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.
Two reports are displayed in page. The Vertical Space between two reports are more. Can I reduce the space so that it can be displayed one above the other without space?
SET PAGE=NOLEAD but its a squirrelly command...it won't work with any other SET PAGE commands. It removes the two blank rows at the top of a TABLE output. Why there are two blank rows at the top of a table output in the first place is mystifying!
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
I find the best way is to create to HOLD FORMAT HTM files, then use -HTMLFORM with !IBI.FIL.filename; to display them. In the HTML page, you can use CSS with absolute positioning to postion the reports. Here is a simple example. I had to remove tag the server doesn't like.
--- start head tag ---- <title>Test Reports</title> --- start style tag type="text/css"> .gph1 {position: absolute; top: 20px; left: 0px; } .rpt1 {position: absolute; top: 220px; left: 0px;} .gph2 {position: absolute; top: 260px; left: 0px;} .rpt2 {position: absolute; top: 460px; left: 0px;} --- start style tag --- --- head tag --- --- start body tag ---- <div class="gph1 "> !IBI.FIL.GRAPH1;</div> <div class="rpt1 "> !IBI.FIL.REPORT1;</div> <div class="gph2 "> !IBI.FIL.GRAPH2;</div> <div class="rpt2 "> !IBI.FIL.REPORT2;</div> ---- end body tag ----- ------ end html tag ----