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.
FIELD1 will have multiple values which will be in FIELD3 and based on each value, value in FIELD4 changes. So, I need to join TABLE1/FIELD1 to TABLE2/FIELD3 multiple times and need to retrieve FIELD4 for each join. how can I do this?
thanks a lot..This message has been edited. Last edited by: Kerry,
You can hoin to he same table multiple time as long as you give each join a unique name such as J1 J2 J3 J4 etc.
The fields can then be qualified by prefixing them with the join name.
J1FIELD4 J2FIELD4 J4FIELD4
However I think you should explain what you wnat to do a bit more clearly. It may be simply that you have a one to many join in which case you just need to use
JOIN FIELD1 IN TABLE1 TO ALL FIELD3 IN TABLE2
Posts: 140 | Location: Adelaide South Australia | Registered: October 27, 2006
It reads to me that FIELD1 occurs multiple times for every occurrence of FIELD3 and you want FIELD4 to change based on the value of FIELD1 .... which is confusing because it looks like FIELD4 occurs only once for each value of FIELD3 ....