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 tried searching in the forum (maybe i don't know what exactly to put in search field), but could not find what i need.
I have started of my report with document composer and used its auto generated code to style and position my reports. However, there is one challenge I couldn't solve. I have two different report components, second report's position is relative to first report. My first report ends somewhere midway on page1 and that's where my second report starts, so far so good, but the problem is that second report could span across multiple pages. the pdf output somehow leaves half page empty across all pages from page2.
What Can I do to make sure there isn't any annoying whitespace on my pdf output.?
you have to use the Overflow property of the second fex ( L02_1_rpt_dt1 ) in order to allow max sizing and you have to use the FLOW_TOP_MARGIN to prevent top of report to be in your top style.
In L02_1_rpt_dt1, replace the dimension value by *
Example :
rap1.fex
TABLE FILE CAR
PRINT
DEALER_COST
RETAIL_COST
BY LOWEST COUNTRY
BY LOWEST CAR
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
Rap2.fex
TABLE FILE EMPDATA
PRINT
PIN
BY LOWEST DIV
BY LOWEST DEPT
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END