Focal Point Banner


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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
PDF and Wrap
 Login/Join
 
Silver Member
posted
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, 2003Report This Post
Platinum Member
posted Hide Post
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,
Mikel

This message has been edited. Last edited by: <Mabel>,
 
Posts: 173 | Location: Madrid, Spain | Registered: May 09, 2003Report This Post
Silver Member
posted Hide Post
Mikel, thanks. I used option 1 that you gave me and it worked. Learn something new every day.

Thanks again.
Raelene
 
Posts: 31 | Location: Oklahoma City, OK | Registered: September 11, 2003Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders