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 am only an occassional user of the webfocus product, and hence am no expert.
I have a user who in her wisdom does not want to see Z2 as the output code when displayed as output but rather they want undecided where code Z2 = undecided on the table. I have other codes in the table which there is no proble with only the Z2.
So when displaying all the codes how do I cange the value of the output field to Undecided instead of the default value of Z2.
Sorry more of an AS400 person than WebfocusThis message has been edited. Last edited by: Kerry,
Posts: 8 | Location: White Plains | Registered: June 20, 2005
If I understand that you want to keep the value of the result field 'OUTPUT_CODE' unless the value is 'Z2', one way to do it would be (assuming a length of 25):
DEFINE FILE filename
OUTPUT_VALUE/A25 = IF OUTPUT_CODE EQ 'Z2' THEN 'Undecided' ELSE OUTPUT_CODE;
END
TABLE FILE filename
PRINT OUTPUT_VALUE
.
.
.
END
-RUN