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 cannot find the way to change a decimal number field to an alphanumberic field with no leading zeros. I am doing a letter and need to concatenate the gift amount to the end of the sentence, therefore it needs to be an alpha.
Looks like the answer you needed is already posted, but I was interested in another comment you made about having to concatenate on the end of a sentence. I don't know how exactly you are producing your letters, but the standard was is to include all text in the heading section. Just wanted to make sure that you know you can include fields there as well without having to convert to text or anything else as in the GIFT_AMT_FIELD in my example below.
TABLE FILE tablenm
PRINT donor_id NOPRINT
HEADING
"Dear Donor,"
" "
"Thank you for your contribution in the amount of <GIFT_AMT_FIELD>. It is sincerely appreciated."
" "
END
Regards,
Darin
In FOCUS since 1991 WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex WF Client: 77 on Linux w/Tomcat
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007
Leading space can be eliminated several ways: Use a || instead of a | in your concatenation Use the STRIP function to remove all spaces My standard is to use SQUEEZ to squeeze all spaces into a single space. This preserves at least one space. Isn't that "Using Functions" manual just your favroite manual of all time? ;-)
Regards,
Darin
In FOCUS since 1991 WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex WF Client: 77 on Linux w/Tomcat
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007