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.
II am trying to do a left outer join between two files with the understanding that the data in the right-most table can have missing data. My problem is this: the resultant joined output file still has what looks like blanks in the place where data is missing (Field EFC) and I want to have text show there that says the data is in fact missing by the use of "99999".
What do I have to do to accomplish this? Also, this is using Mainframe FOCUS, Release 7.1.
My appreciation to all who reply for your time and expertise.
Here is my code snippet where I am attempting this:
SET NODATA = '99999'
SET ALL = PASS
-*
JOIN CLEAR *
JOIN STU_ID IN R187X&INSTX TO ALL STU_ID IN R187Y&INSTX AS FILE001
-*
DEFINE FILE R187X&INSTX
NEWEFC /A05 = IF EFC EQ ' ' THEN '99999' ELSE EFC;
END
-*
TABLE FILE R187X&INSTX
-*
PRINT
-*
TERM
MAX.DUALSTD
MAX.RT134 AS RT134
MAX.DUALTERMS
AA642 AS AA642
RB110 AS 'RB110'
RB205 AS 'RB205'
MAX.SCORE1
MAX.SCORE2
MAX.SCORE3
MAX.SCORE4
MAX.SCORE5
MAX.SCORE6
MAX.SCORE7
MAX.SCORE8
MAX.TEST_DT
TEST_CTR
ALL.AA003 AS AA003
INFORLSE
EFC
NEWEFC
-*
BY STU_ID
-*
-*WHERE RB205 EQ 'ACCUP'
WHERE RB110 EQ '&HS1' OR '&HS2' OR '&HS3'
OR '&HS4' OR '&HS5' OR '&HS6'
OR '&HS7'
-*
ON TABLE HOLD AS R187&INSTX
-*
END
-RUN
-*
DEFINE FILE R187&INSTX
NEWEFC /A05 = IF EFC EQ ' ' THEN '99999' ELSE EFC;
END
-*
This message has been edited. Last edited by: webmeister,