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'm still new at WebFOCUS and am in the testing phase. I'm trying to join together 4 tables and 2 of them have defines to link format P9 to D20.2. USF_AA_ADDRESS.PIDM and USF_AA_DEGREE.PERSON_UID have a format of P9 and USF_AA_DN_DT.PIDM and USF_AA_GIFT_SUMS.PIDM have a format of D20.2. I feel like I should be using WITH instead of IN for the defined fields based on search results, however, it wasn't working for me.
----
Here is the error I'm getting: Error Parsing MASTER File USF_AA_ADDRESS ( (FOC370) THE FIELDNAME USED IN JOIN CANNOT BE FOUND IN THE FILE: (FOC370) THE FIELDNAME USED IN JOIN CANNOT BE FOUND IN THE FILE: (FOC370) THE FIELDNAME USED IN JOIN CANNOT BE FOUND IN THE FILE: (370)).
----
Here is my code:
DEFINE FILE USF_AA_ADDRESS PERSON_UID/D20.2=USF_AA_ADDRESS.USF_AA_ADDRESS.PIDM; END DEFINE FILE USF_AA_DEGREE_USF PIDM/D20.2=USF_AA_DEGREE_USF.USF_AA_DEGREE_USF.PERSON_UID; END JOIN LEFT_OUTER USF_AA_ADDRESS.USF_AA_ADDRESS.PERSON_UID IN USF_AA_ADDRESS TO UNIQUE USF_AA_DN_DT.USF_AA_DN_DT.PIDM IN USF_AA_DN_DT TAG J0 AS J0 END JOIN LEFT_OUTER J0.USF_AA_DN_DT.PIDM IN USF_AA_ADDRESS TO UNIQUE USF_AA_GIFT_SUMS.USF_AA_GIFT_SUMS.PIDM IN USF_AA_GIFT_SUMS TAG J1 AS J1 END JOIN LEFT_OUTER J1.USF_AA_GIFT_SUMS.PIDM IN USF_AA_ADDRESS TO UNIQUE USF_AA_DEGREE_USF.USF_AA_DEGREE_USF.PIDM IN USF_AA_DEGREE_USF TAG J2 AS J2 END
----
I tried a variety of different changes of IN's to WITH's, but am getting the FOC370 error. Any ideas on how to fix this?This message has been edited. Last edited by: Aimee,
I also contacted a DBA to see if she can change the tables with D20.2 to P9. Oddly enough when I check the MASTER files, they all say USAGE = P9 ACTUAL = ... so not sure why they're coming up as D20.2. Hopefully she'll get back to me soon!
JOIN LEFT_OUTER USF_AA_ADDRESS.USF_AA_ADDRESS.PERSON_UID IN USF_AA_ADDRESS TO UNIQUE USF_AA_DN_DT.USF_AA_DN_DT.PIDM IN USF_AA_DN_DT TAG J0 AS J0 END JOIN LEFT_OUTER J0.USF_AA_DN_DT.PIDM IN USF_AA_ADDRESS TO UNIQUE USF_AA_GIFT_SUMS.USF_AA_GIFT_SUMS.PIDM IN USF_AA_GIFT_SUMS TAG J1 AS J1 END JOIN LEFT_OUTER J1.USF_AA_GIFT_SUMS.PIDM IN USF_AA_ADDRESS TO UNIQUE USF_AA_DEGREE_USF.USF_AA_DEGREE_USF.PIDM IN USF_AA_DEGREE_USF TAG J2 AS J2 END
DEFINE FILE USF_AA_ADDRESS PERSON_UID/D20.2=USF_AA_ADDRESS.USF_AA_ADDRESS.PIDM; END DEFINE FILE USF_AA_DEGREE_USF PIDM/D20.2=USF_AA_DEGREE_USF.USF_AA_DEGREE_USF.PERSON_UID; END
However, I'm getting this error when attempting to create a new procedure from table USF_AA_ADDRESS:
Error Parsing MASTER File USF_AA_ADDRESS ( (FOC370) THE FIELDNAME USED IN JOIN CANNOT BE FOUND IN THE FILE: (FOC370) THE FIELDNAME USED IN JOIN CANNOT BE FOUND IN THE FILE: (FOC370) THE FIELDNAME USED IN JOIN CANNOT BE FOUND IN THE FILE: (FOC370) THE FIELDNAME USED IN JOIN CANNOT BE FOUND IN THE FILE: (370)).
I'm still waiting on the word from our DBA about why the two are showing up as D20.2 when the Master files shows usage of P9.