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.
From my searching, it seems this functionality is not possible. I am hoping someone can prove me wrong.
I understand that subreports are replaced by the drilldown ability, which is fine if the user is at a computer. However, I need a report that can be printed and then 'used' in that form. This may mean walking through a warehouse and checking various items in stock.
For each main row, I want to show a set of details about that item. Then I want to show several lists of information related to that main row. In Access, this is simple subreport functionality.
Thanks in advance.
Posts: 9 | Location: Victoria, Australia | Registered: September 27, 2005
I am currently on version 5.3.3. Can you point me to somewhere I can see some example output from a expandable or accordian report?
dhagen, I would be very keen to see some examples of the techniques you are refering to. I am currently using html output, although it would not be an issue to use pdf.
Posts: 9 | Location: Victoria, Australia | Registered: September 27, 2005
Here is a quick example. The idea is to run each sub-report as a seperate report, and append the results together in a hold file. It is important to account for all columns in the final report in each extract. You assign a blank to alphas, or zero supress the numerics. In the final report, you can have columns over write one another, because only the sub-report's columns will have values to display.
Here is the source:
TABLE FILE GGSALES SUM COMPUTE C_SORT/I5 = 1; UNITS DOLLARS BUDUNITS BUDDOLLARS COMPUTE C_CAT/A11 = ' '; COMPUTE C_DOL/I8S = 0; COMPUTE C_BDOL/I8S = 0; BY REGION BY ST ON TABLE SET HOLDLIST PRINTONLY ON TABLE HOLD AS MYSUB FORMAT ALPHA END FILEDEF MYSUB CLEAR FILEDEF MYSUB DISK mysub.ftm (APPEND TABLE FILE GGSALES SUM COMPUTE C_ST/A2 = ' '; COMPUTE C_SORT/I5 = 2; COMPUTE C_UNITS/I8S =0; COMPUTE C_DOLLARS/I8S =0; COMPUTE C_BUDUNITS/I8S =0; COMPUTE C_BUDDOLLARS/I8S =0; COMPUTE C_CAT/A11 = MAX.CATEGORY; COMPUTE C_DOL/I8S = DOLLARS; COMPUTE C_BDOL/I8S = BUDDOLLARS; BY REGION BY CATEGORY NOPRINT ON TABLE SET HOLDLIST PRINTONLY ON TABLE HOLD AS MYSUB FORMAT ALPHA END
TABLE FILE MYSUB PRINT C_UNITS IN 20 AS '' C_DOLLARS AS '' C_BUDUNITS AS '' C_BUDDOLLARS AS '' C_CAT IN 15 AS '' C_DOL IN 25 AS '' C_BDOL IN 35 AS '' BY REGION AS '' BY C_SORT NOPRINT BY C_ST AS '' ON REGION SUBHEAD " " "Region<12>State<23>Units<30>Dollars<40>Bud Units<50>Bud Dollars" ON C_SORT SUBHEAD " " "<15>Category:<26>Actuals<36>Budgets" WHEN C_SORT EQ 2; ON C_SORT SUBFOOT " " WHEN C_SORT EQ 2; ON TABLE SET ONLINE-FMT PDF ON TABLE SET STYLE * TYPE=SUBHEAD, LINE=2, STYLE=BOLD+UNDERLINE, $ ENDSTYLE END
Below is what the hold file would look like before the final report: