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.
TABLE FILE GGSALES SUM UNITS OVER DOLLARS ACROSS CATEGORY ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE SET ONLINE-FMT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, PAGESIZE='Letter', LEFTMARGIN=0.250000, RIGHTMARGIN=0.250000, TOPMARGIN=0.250000, BOTTOMMARGIN=0.250000, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, GRID=OFF, FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', BACKCOLOR='NONE', STYLE=NORMAL, $ ENDSTYLE END
Thanks & Regards, Goldy
Posts: 30 | Location: India | Registered: February 23, 2005
Kamesh, If your output is HTML give this a try it works in WF 7.1.0 DEFINE FILE CAR CAR_COUNTRY/A40 = CAR || ' ' || COUNTRY; END -RUN TABLE FILE CAR PRINT CAR COUNTRY CAR_COUNTRY END -RUN[/code]This message has been edited. Last edited by: <Mabel>,
Posts: 406 | Location: Canada | Registered: May 31, 2004
If the result set isn't too big, you can always use a sledge hammar and append two outputs together.
for example:
TABLE FILE CAR.MODEL PRINT COMPUTE C_SORT/I5 = 1; COMPUTE C_COL/A100 = WARRANTY; BY CAR BY MODEL WHERE COUNTRY EQ 'ENGLAND'; ON TABLE HOLD AS TT FORMAT ALPHA END
FILEDEF TT DISK TT.FTM (APPEND
TABLE FILE CAR PRINT COMPUTE C_SORT/I5 = 2; COMPUTE C_COL/A100 = BODYTYPE; BY CAR BY MODEL WHERE COUNTRY EQ 'ENGLAND'; ON TABLE HOLD AS TT FORMAT ALPHA END
TABLE FILE TT PRINT C_COL BY CAR BY MODEL BY C_SORT NOPRINT END