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 would like to display my table in 2 similar parts side by side in the same page (landscape format), instead of displaying my table only on the left side on my page and going on a second page.
My table is a very simple one and contains 3 little columns.
Is it a way to make that?This message has been edited. Last edited by: Kerry,
WebFOCUS 7.6.4 running on Windows Output formats : PDF, Excel and HTML My blog
Posts: 61 | Location: Luxembourg | Registered: October 31, 2007
Or ... create an extra column, called column or some such descriptive name, that you can increment with 1 after so many rows have been processed, and then do an across on this column (noprint). That will divide your report in two parts, one left and one right. You would also have to keep track of the rows, and see to it that your column field gets set back to 1 when the right number of records have been processed. It would resemble something like this:
define file xxx
-* keep track of the number of records read
reccntr/i5 = if reccntr eq 35 then 1 else reccntr+1;
-* calculate left or right column
colnum/i5 = if reccntr eq 1 and colnum eq 1 then 2 else if reccntr eq 1 then 1 else colnum;
-* Calculate pagenumber
pagnum/i5 = if colnum eq 1 then pagnum + 1 else pagnum;
end
table file xxx
sum yy1 yy2 yy3
by pagnum page-break noprint
by reccntr noprint
across colnum noprint
end
(Haven't tested this, but it comes close I guess).
Hope this helps ... if only to give an idea of how it could be done.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007