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.
Hello All, I have a requirement to count number of header records and number of detail records. my compute statement includes both header and detail records. I am adding all detail records but when detail record is missing I want to add one. why is it not working? Below code is not adding one when details record is missing. It is adding one when I change my join to "UNIQUE".
JOIN LEFT_OUTER HEADER.HEADER.MASTER_KEY IN HEADER TO MULTIPLE DETAILS.DETAILS.MASTER_KEY IN DETAILS AS J0 END TABLE FILE HEADER SUM CNT.HEADER.HEADER.MASTER_KEY AS 'HEADCNT' COMPUTE DETCNT/I5 = IF DETAILS.DETAILS.MASTER_KEY IS MISSING THEN 1 ELSE CNT.DETAILS.DETAILS.MASTER_KEY; AS 'DETCNT'; BY REGION END
Any help, I would appreciate.
Thanks, SG.This message has been edited. Last edited by: Kerry,
Webfocus 7.6.8 PDF,HTML & EXCEL
Posts: 32 | Location: memphis,tn | Registered: January 25, 2007
It can't count something that is not there. Keep the multiple and put the results into a hold file. Report from the hold file and do your count there. That should give you the count you need.
Ginny, thanks for your reply. I am not counting when detail record is missing. I want to add "1" when missing. May be I did not put it right. why my "IF DETAILS.DETAILS.MASTER_KEY IS MISSING" not working.
Thanks, SG.
Webfocus 7.6.8 PDF,HTML & EXCEL
Posts: 32 | Location: memphis,tn | Registered: January 25, 2007
Nevermind. I figured it out. Used Inner join first to hold the data and Left outer join and unique for the report. Looks like missing on will not work with join type mulitple.
Thanks, SG.
Webfocus 7.6.8 PDF,HTML & EXCEL
Posts: 32 | Location: memphis,tn | Registered: January 25, 2007