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'm running 5.21 WebFOCUS on Windows 2000. Does anyone know why the page number would not be printed when using PDF and WRAP?
This sample code will not display the actual page number. If I remove the WRAP, it will. TABLE FILE CAR PRINT MODEL BY MODEL NOPRINT ON TABLE PCHOLD FORMAT PDF FOOTING BOTTOM "Page ON TABLE SET STYLE * TYPE=REPORT, FONT='TIMES NEW ROMAN', SIZE=10, COLOR=BLACK, BACKCOLOR=NONE, STYLE=NORMAL, WRAP=8, $ ENDSTYLE END
Any ideas are appreciated.
Thanks.
Posts: 31 | Location: Oklahoma City, OK | Registered: September 11, 2003
It seems that WRAP is affecting FOOTING, adjusting each item of footing to each column. If you don't want remote WRAP, there are two litle tricks to solve this issue:
Problem:
TABLE FILE CAR PRINT CAR BY COUNTRY FOOTING BOTTOM "PAGE ON TABLE PCHOLD FORMAT PDF ON TABLE SET STYLE * UNITS=INCHES, $ TYPE=REPORT, WRAP=3, $ END
Trick 1 - Define FOOTING style with specific WRAP: TABLE FILE CAR PRINT CAR BY COUNTRY FOOTING BOTTOM "PAGE ON TABLE PCHOLD FORMAT PDF ON TABLE SET STYLE * UNITS=INCHES, $ TYPE=REPORT, WRAP=3, $ TYPE=FOOTING, WRAP=.5, $ END
Trick 2 - Define a unique page string using COMPUTE (=only 1 FOOTING item):
TABLE FILE CAR PRINT CAR COMPUTE PAGESTR/A16 = 'PAGE: ' | FTOA(TABPAGENO, '(F5)', 'A5') ; NOPRINT BY COUNTRY FOOTING BOTTOM " ON TABLE PCHOLD FORMAT PDF ON TABLE SET STYLE * UNITS=INCHES, $ TYPE=REPORT, WRAP=3, $ END
Regards, MikelThis message has been edited. Last edited by: <Mabel>,