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 built a FOCUS temporary table by appending multiple reports using App Studio 8.2.01M. When I create a final report from this temporary table, I need to suppress zero values in aggregated columns. I'm trying to both suppress and include commas in my total values. This works until I attempt to open my procedure after saving. This generates an Error parsing report req... window with >/< TOTAL/I7CS displayed. I've tried to find my answer in FPF, but unable to do so. Can a number be formatted with both commas and zero suppression?This message has been edited. Last edited by: FP Mod Chuck,
WebFOCUS 7.6 Windows, All Outputs
Posts: 26 | Location: Oklahoma City | Registered: January 27, 2012
By ""suppress" do you mean "eliminate" or don't show/use those values in your display or in your calculations? the "I7CS" is only for formatting the result.
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
At top of fex: SET NODATA = '' then redefine the column. Example: D_YOUR_COLUMN_NAME/I7C MISSING ON = IF YOUR_COLUMN_TEST IS MISSING THEN MISSING ELSE YOUR_COLUMN_TEST; OR D_YOUR_COLUMN_NAME/I7C MISSING ON = IF YOUR_COLUMN_TEST EQ 0 THEN MISSING ELSE YOUR_COLUMN_TEST;
Sorry to just get back with this. Thank you all for your advice given. Before sending code to you, I decided to follow Mr. Flynn's example. Worked great! Thank you everyone!!!
WebFOCUS 7.6 Windows, All Outputs
Posts: 26 | Location: Oklahoma City | Registered: January 27, 2012