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 report with two versions, excel and PDF. There are two columns in the report with long character lengths, description and comments, and I want to use substr on the PDF version to limit the character length of these two columns and no substr on the excel version.
I had set this up using two prints and a goto for excel, but am told I shouldn't do it this way and should use a variable instead.
This is the basic logic of my report -SET &COMMENTS = IF &FORMAT EQ 'P' THEN COMMENTS_CUT ELSE COMMENTS; -SET &DESCRIPY = IF &FORMAT EQ 'P' THEN DESCRIPTION_CUT ELSE DESCRIPTION;
Table file: PRINT CONTAINER_NAME AS 'Container,Name' &DESCRIPY AS 'Description' ROOM_NUMBER AS 'Room #' STATUS AS 'Status' STATUS_EFFECTIVE_DATE2 AS 'Status,Effective Date' &COMMENTS AS 'Comments' -GOTO RESUME
But when I run I get (FOC295) A VALUE IS MISSING FOR: &DESCRIPY. What is wrong with my IF statement?This message has been edited. Last edited by: BDAVIS,