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 2 reports with different structure.This reports use two variable:
1. The first one defines the reports output. For Example &OUTPUT='HTML' 2. The second one defines whether to print the report or to save it in a file.
I need to concatenate the output of the reports and print it on the screen or save it in a file, depending on the second variable. I have found a way to print the reports on the screen by using -HTMLFORM but I do not know how to save the output of the reports in a file.
Can you tell me if it is possible and how can I do that (irrespective of the output type)?
You have in fact two questions. 1) Concatenate two reports.
2) output format.
The second on is easy, put this in your code
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT &WFFMT.(<HTML,HTML>,<PDF,PDF>,<Excel 2000,EXL2K>,<Excel Formula,EXL2K FORMULA>).Select type of display output.
ON TABLE SET HTMLCSS ON
The first is a bit less easy. It depends on the output format. Use the compound report builder.
If your compound is HTML this could be the code
-* File DEMO3.fex
-SET &FORMAAT='HTML';
SET COMPOUND = OPEN
EX demo WFFMT=&FORMAAT
SET COMPOUND = OPEN NOBREAK
EX demo2 WFFMT=&FORMAAT
Supposed the two fexes demo and demo2 have WFFMT as variable for the format.
If you want this in PDF, the compound report looks a bit different.
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006