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.
New TIBCO Community Coming Soon
In early summer, TIBCO plans to launch a new community—with a new user experience, enhanced search, and expanded capabilities for member engagement with answers and discussions! In advance of that, the current myibi community will be retired on April 30. We will continue to provide updates here on both the retirement of myibi and the new community launch.
What You Need to Know about Our New Community
We value the wealth of knowledge and engagement shared by community members and hope the new community will continue cultivating networking, knowledge sharing, and discussion.
During the transition period, from April 20th until the new community is launched this summer, myibi users should access the TIBCO WebFOCUS page to engage.
JOIN hfld1 IN hostfile
TO [ALL]
crfield IN crfile AS joinname
END
Notice: one does not use FROM.
Since you do not use ALL this mean that you are in a one-to-one relationship. So, if COL2 is in TBL2 then you will get Martin's first relationship. If it is in TBL1 you will get the second one. It does not depend on the JOIN command.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Since you're using tables and fields from a JOIN you must refer them as from the join.
So it must look like this:
TABLE FILE TBL1
PRINT
J0.SEG01.COL
END
-RUN
-EXIT
Where you have to specify if it's from the parent (TBL1), the first child (which is your first join with TBL2 but now referred as J0) and also the segment's name (SEG01 in my example). Then if you have fields from TBL3, you need to reference them as J1.SEG01.xxxxx.
Hope that help.
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2410 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013