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 have the following columns and data Test_id---dow_id---revenue---Test_name---Test_desc ---------------------------------------- 1000------1--------10----------kris--------test 1000------2--------20----------kris--------test 1000------5--------12----------kris--------test 2777------2--------14----------mess--------ress 2777------7--------17----------mess--------ress -------------------------------------------
Is it possible to display the above data as following report
Basically i want to display columns for all the Dow's i.e.. 1-7 never mind if the data exist or not for any of the DOW's is it possible to achive the above in WebFOCUS?
Thanks krishThis message has been edited. Last edited by: krish,
7.1.1 Windows XP HTML
Posts: 64 | Location: North Carolina | Registered: December 04, 2007
Since I don't have your file, I am using the CAR file and instead of your TEST_NAME field I am simulating using AVE.RETAIL. In your example, just replace the fields. In order to place the TEST_NAME at the end of the ACROSS, use the SEQUENCE attribute in your stylesheet with a high number:
TABLE FILE CAR
SUM AVE.RETAIL
BY COUNTRY
LIST SALES SEATS
BY COUNTRY
ON TABLE HOLD
END
-RUN
DEFINE FILE HOLD
ALIST/A5=LJUST(5, FTOA(LIST, '(D5c)', 'A5'), 'A5');
COLS/A12='COLUMN' || ALIST;
END
TABLE FILE HOLD
SUM AVE.RETAIL
BY COUNTRY
SUM SALES SEATS
BY COUNTRY
ACROSS COLS AS ''
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, COLUMN=AVE.RETAIL, SEQUENCE=99, $
ENDSTYLE
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006