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.
Ihave a report that has several Table Files. I need to take values from the "ON TABLE COLUMN-TOTAL AS 'Total'" from each file and create a summary at the end of the report. How can I grab values from each table file and dump them into my end of report summary?
Posts: 19 | Location: WI | Registered: July 06, 2005
here's what i might do, if the summaries were all the same..or could be made to appear to be the same... to each Table file paragraph, add a second Table File paragraph TABLE FILE CAR ..do stuff ON TABLE HOLD AS MYTABLE1 FORMAT HTMTABLE END -RUN TABLE FILE CAR ..sum stuff up ON TABLE HOLD AS MYHOLD1 END -at the end TABLE FILE MYHOLD1 PRINT * ON TABLE HOLD AS MYHOLDSUM MORE FILE MYHOLD1 MORE FILE MYHOLD2 END TABLE FILE MYHOLDSUM ...make it pretty ON TABLE HOLD AS MYTABSUM FORMAT HTMTABLE END -RUN -HTMLFORM BEGIN !IBI.FILE.MYTAB1; !IBI.FILE.MYTAB2; ..etc !IBI.FILE.MYTABSUM; -HTMLFORM END
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
Is there any performance hit to dumping tables to a hold file? In my case there will only be about a page of data as it is a summary type of report. I'm concerned about the performance of having to create multiple hold file before generating the final result.
Posts: 19 | Location: WI | Registered: July 06, 2005