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 requirement to have a string of dots go across a column and stop at a border. This is like a technique commonly used in table of contents . I tried to concatenate several hundred dots to the end of the string and I get the exclamation point (truncation character) at the end of the column.
Does any one have a technique to print dots following text across a page and stop at the end of the column?This message has been edited. Last edited by: Kerry,
Posts: 103 | Location: ricmmond va | Registered: September 30, 2004
TABLE FILE CAR
SUM
COMPUTE TEXTSTRG/A50=COUNTRY; NOPRINT
COMPUTE LASTPOS/I3= ARGLEN(50,TEXTSTRG,'I3'); NOPRINT
COMPUTE NODOTS/I3= 50 - LASTPOS; NOPRINT
COMPUTE OUTSTRING/A50=OVRLAY(TEXTSTRG, 50, '..................................................', NODOTS , LASTPOS + 1, 'A50');
COMPUTE ONPAGE/I3= LAST ONPAGE + 1; AS ''
BY COUNTRY AS '' NOPRINT
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
FONT=COURIER,$
ENDSTYLE
END