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 a PDF that automatically panels. The first page of the PDF shows the formatting I would expect.
The second (panelled) page lacks the styling specified for the TABFOOTING. This is especially bothersome with some items we're trying to put inside of borders.
Sample code:
TABLE FILE GGSALES
SUM
GGSALES.SALES01.UNITS/P12C
GGSALES.SALES01.BUDUNITS/P12C
GGSALES.SALES01.BUDDOLLARS/P12.2M
GGSALES.SALES01.DOLLARS/P12.2M
COMPUTE DIFDOLLAR/P12.2BM = GGSALES.SALES01.BUDDOLLARS - GGSALES.SALES01.DOLLARS;
COMPUTE DIFUNIT/P12.2SBM = GGSALES.SALES01.BUDUNITS - GGSALES.SALES01.UNITS;
COMPUTE DOLPERUNIT/D12.2M = GGSALES.SALES01.DOLLARS / GGSALES.SALES01.UNITS;
COMPUTE BUDDOLPERUNIT/D12.2M = GGSALES.SALES01.BUDDOLLARS / GGSALES.SALES01.BUDUNITS;
BY GGSALES.SALES01.MONTHYEAR
ON TABLE SUBFOOT
"This is some really long text that should be contained inside of the border, <+0>even if it stretches across two pages. but it does not. that border stops on the first page"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE ROW-TOTAL AS 'TOTAL'
ON TABLE COLUMN-TOTAL AS 'TOTAL'
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
PAGESIZE='Letter',
LEFTMARGIN=0.500000,
RIGHTMARGIN=0.500000,
$
TYPE=REPORT,
FONT='ARIAL NARROW',
SIZE=10,
COLOR='BLACK',
STYLE=NORMAL,
$
TYPE=TABFOOTING,
BORDER-TOP=HEAVY,
BORDER-BOTTOM=HEAVY,
BORDER-LEFT=HEAVY,
BORDER-RIGHT=HEAVY,
JUSTIFY=RIGHT,
HEADALIGN=INTERNAL,
$
TYPE=TABFOOTING,
LINE=1,
OBJECT=TEXT,
JUSTIFY=LEFT,
$
TYPE=TABFOOTING,
LINE=1,
OBJECT=TEXT,
ITEM=2,
JUSTIFY=LEFT,
POSITION=DIFDOLLAR,
$
TYPE=TABFOOTING,
LINE=1,
OBJECT=TEXT,
ITEM=2,
JUSTIFY=LEFT,
POSITION=DIFDOLLAR,
$
ENDSTYLE
END
This message has been edited. Last edited by: Kerry,
IBI tech support advised me the HEADPANEL=ON option in styling will repeat the borders per page, and for additional control, to use ALIGN-BORDERS.
It's not quite what we wanted--in some cases you want the box to be open on the left/right where the information continues or was continued.
It occurs to me now that in coming back to clean up my post, we could draw the borders on a per cell basis: Draw top and bottom borders across the lot, left and right borders on only two cells.