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 tried the following logic in my heading for my PDF and it didn't work. My try is TYPE=HEADING,LINE=4,WRAP=5,$
Can anybody help me?
TABLE FILE CAR PRINT COUNTRY COMPUTE TEST_TEXT/A200 = 'HE DIDN'T MAKE IT HERE FOR TWO DAYS AND THEN WHEN HE DID SHOW UP IT WAS 15 MINUTES BEFORE WE WERE READY TO CLOSE. HE WAS AWARE OF OUR HOURS'; WHERE READLIMIT EQ 100 WHERE RECORDLIMIT EQ 100 HEADING " " ON TABLE PCHOLD FORMAT PDF ON TABLE SET PAGE NOLEAD ON TABLE SET STYLESHEET * TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=8, $ TYPE=REPORT, COLUMN=TEST_TEXT, COLOR=BLUE, WRAP=5, $ ENDSTYLE ENDThis message has been edited. Last edited by: Mark1,
I don't understand. There is no heading in your example. Do you want to have the long text-line wrapped in your heading ?? If yes, see below:
DEFINE FILE CAR
TEST_TEXT/A200 = 'HE DIDN'T MAKE IT HERE FOR TWO DAYS AND THEN WHEN HE DID SHOW UP IT WAS 15 MINUTES BEFORE WE WERE READY TO CLOSE. HE WAS AWARE OF OUR HOURS';
END
TABLE FILE CAR
HEADING
"<TEST_TEXT "
" "
" "
SUM DEALER_COST
BY COUNTRY AS ''
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLESHEET *
TYPE=REPORT, GRID=OFF,FONT='ARIAL', SIZE=8, $
TYPE=HEADING,LINE=1,WRAP=5,$
ENDSTYLE
END
Yeah, sorry I wasn't clear. I needed the line in the header to wrap in my pdf output. This worked... Thank you!! The key is defining the field instead of making it an amper variable.This message has been edited. Last edited by: Mark1,