As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I am facing one issue with the across report.I want to display year of Report in the intersection area of BY columns and across columns.Basically in the left upper corner side of the report containing both ACROSS AND BY Columns, nothing is written. The Space remains blank. I want to write year there itself. But not able to do that. Could you guys pleaase help me in this regard.
I have tried a lot with page heading and report heading options and Style.But could not succeed. Thanking You in advance.
Mayank AgrawalThis message has been edited. Last edited by: Kerry,
Can't do it. You cannot put anything in that area. The only thing you can do is to create a HOLD file with the ACROSS statement and then report from the HOLD file without the ACROSS, but this is all too much work to just put some text in that specific area.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Depending on your requirements and data structure, you might try something like this:
TABLE FILE CAR
SUM COUNTRY AS '&DATEYY'
OVER SALES
OVER SEATS
OVER DCOST
ACROSS COUNTRY NOPRINT
ON TABLE SET STYLE *
TYPE=TITLE, STYLE=BOLD, COLUMN=COUNTRY, BACKCOLOR=PALE GREEN, $
ENDSTYLE
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Hi Dan Satchell, thanks for your help. But I have one doubt. Is it possible to include any BY clause along with OVER in the code written by you. Basically, I want seat ,sales and Dcost as three different columns not as three rows. And 2011 above those three columns. Thanking You.
DEFINE FILE CAR
YR/A4 = '&DATEYY';
END
TABLE FILE CAR
SUM
SALES
SEATS
DCOST
ACROSS YR AS ''
-*
ON TABLE SET STYLE *
TYPE=TITLE, STYLE=BOLD, COLUMN=YR, BACKCOLOR=PALE GREEN, $
TYPE=ACROSSVALUE, JUSTIFY=CENTER, $
ENDSTYLE
END
2011
SALES SEATS DEALER_COST
208420 70 143,794
Year won't go exactly "in the intersection area of BY columns and across columns" but that's the best that can be achieved with WebFOCUS unless WF 8 has some nice cards up the sleeve to surprise us all.