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 to print a field which is having 70 size but I don’t have space to print it in the PDF file.
Is there any way to split that into 2 strings may be each one size 35 (without splitting the word), So that I can print one below the other?This message has been edited. Last edited by: Kerry,
locate the position of your 3rd blank (use the POSIT function and SUBSTR function, or some folks are fans of the GETTOK function...all in your *Using Functions* manual ), then replace that 3rd space as follows:
DEFINE FILE CAR
CR/A1 = HEXBYT(13, 'A1');
LF/A1 = HEXBYT(10, 'A1');
CRLF/A2 = CR || LF;
-* if your output is PDF or ELX2K
ABC5/A30=CAR || CRLF || COUNTRY;
-* if your output is onscreen ABC5/A100='<table><tr><td>'|CAR|'<br>'|COUNTRY|'</td></tr></table>';
END
-RUN
TABLE FILE CAR
SUM ABC5 BY CAR BY COUNTRY
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
TYPE=REPORT,LINEBREAK='CRLF'
ENDSTYLE
END
-RUN
i got this hexbyte combo from my colleagues on focal point, i'm sorry i can't remember from whom, but if you do a search on 'HEXBYT(13' you'll come up with several references.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003