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.
(FOC282) RESULT OF EXPRESSION IS NOT COMPATIBLE WITH THE FORMAT OF FIELD: NAME1 (FOC009) INCOMPLETE REQUEST STATEMENT
HOW CAN I GET THE NAME2 WHIT NAME1 ? NUMBER TO CHAR I USED NAME1/A15 = FTOA(110023, '(A15)', NAME1); NAME1/A15 = FTOA(110023, '(I15)', NAME1); BUT IT'S NOT WORK...
I'M NO IDEA...
CAN SOMEBODY HELP ME?
THANKS, YangThis message has been edited. Last edited by: Kerry,
-* Floating number
X /F15 = 110023;
-* Convert a floating numer to alpha
X1 /A15 = FTOA(X, '(F15)', X1);
-* Justify the number to left
X2 /A15 = LJUST(15,X1,X2);
-*
NAME2 /A200 = '<_OPTION VALUE=''' || X2 || '''>' || 'KEY'|| '';
EDIT function put leading zeroes, so you get 000000000110023
However I assume that you are just giving a poor example of what you want to do and it's actually a column that you want in there, in which case standard EDIT or FTOA is all you need.