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 that runs against a flatfile and only generates data if it finds an error. This is a report we actually want to come back empty.
Right now it just checks the field F11 to make sure it is not equal to 0.
WHERE (ELAPSED_TIME_CSV.ELAPSED_TIME_CSV.F2 IS-NOT MISSING )
OR (ELAPSED_TIME_CSV.ELAPSED_TIME_CSV.F4 NE '0')
OR (ELAPSED_TIME_CSV.ELAPSED_TIME_CSV.F7 IS-NOT MISSING )
OR (NOT ELAPSED_TIME_CSV.ELAPSED_TIME_CSV.F8 IN ('A'))
OR (ELAPSED_TIME_CSV.ELAPSED_TIME_CSV.F11 EQ 0)
OR (ELAPSED_TIME_CSV.ELAPSED_TIME_CSV.F12 IS-NOT MISSING )
Now I need to check it to make sure the last 5 digits are all zero's. This is payroll data and the system the flatfile is imported to only does time in 1/10th of an hour (6, 12, 18, 24, 30, etc) shown in the flat file in decimal 10ths as .1 .2 .3 .4 etc.
Since my F11 field is A255V, will I need 250 $ dollar signs for the RJUST statement.
Like this:
WHERE EDIT(RJUST(255,FIELD11,'A255V'),'$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$99999') NE '00000'
prod: WF 7.7.03 platform IIS on Windows 2007, databases: Oracle, , MSSQL