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 created an HTML page which combines about 10 different reports together on one screen with the goal of providing a one page report for the team. Unfortunately I am running into issues where when they try to print the report the formating is not holding and it is printing on multiple pages. Has anyone on here been able to figure out a way to build something that allows you to combine multiple different reports together onto a printable document?
Thank you in advance for any help you can provide.
-LukeThis message has been edited. Last edited by: <Kathryn Henning>,
Originally posted by GavinL: Ah, the age old question, which is such a pain...
Here is what I did, which may be right and may be wrong, but it works.
I created a print.fex that has an -INCLUDE for each of the reports, one right after another.
-HTMLFORM BEGIN
<head>
<style>
body {
background-color: white;
}
p {
font-family: "Times New Roman";
font-size: 20px;
text-align: center;
}
</style>
</head>
<body onload="javascript:window.print()">
-HTMLFORM END
-SET &WFFMT = 'HTML';
-INCLUDE IBFS:/WFC/Repository/Internal/by_state.fex
-SET &WFFMT = 'PDF';
-INCLUDE IBFS:/WFC/Repository/Internal/by_state_cnt_bg.fex
-SET &WFFMT = 'PDF';
-INCLUDE IBFS:/WFC/Repository/Internal/by_state_amt_bg.fex
-SET &WFFMT = 'HTML';
-INCLUDE IBFS:/WFC/Repository/Internal/delinquency_by_state.fex
-SET &WFFMT = 'PDF';
-INCLUDE IBFS:/WFC/Repository/Internal/delinquency_by_state_bg.fex
-HTMLFORM BEGIN
</body>
-HTMLFORM END
Thank you GavinL, this works with one caviot. Currently im my html form i have 2 instances of reports that are side by side in order to best utilize space. If needed i could rework the reports to join together as they will always be the same number of rows (they are top 2 lists so they will always be 2 records). That said if there is a way to handle that within the above code it would probably be easier to handle that way.
-HTMLFORM BEGIN
<HTML>
<TABLE>
<TR>
<TD>!IBI.FIL.MYREPORT1; </TD>
<TD>!IBI.FIL.MYREPORT2; </TD>
</TR>
<TR >
<TD COLSPAN=2>!IBI.FIL.MYREPORT3; <TD>
</TR>
</TABLE>
</HTML>
-HTMLFORM END
where each component is made by a fex EG: table file car sum sales by country on table hold as myreport1 format htmtable end ... IN PDF, you'll do something a bit different. its essentially a compound pdf, with some tricks. I'll post an example for you tomorrow.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003