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 have a data file and two dimension files. My requirement is to join the data file with the two dimension files, and then show the report such that in the BY clause I will have three fields of the 1st Dimension, and in the ACROSS I would have 1 fieldsof the 2nd dimension.
Unfortunately, when I try this, I am getting the following error message:
(FOC029) ALL SORT KEYS ARE NOT IN A SINGLE TOP-TO-BOTTOM SEGMENT PATH
JOIN EQTPERF.EQTPERF.EQUIPMENT_TYPE_SIZE_HT IN EQTPERF TO MULTIPLE EQTDIM.EQTDIM.EQUIPMENT_TYPE_SIZE_HT IN EQTDIM AS J0 END JOIN EQTPERF.EQTPERF.LOCATION_CD IN EQTPERF TO MULTIPLE LOCHIER.LOCHIER.LOCATION_CD IN LOCHIER AS J1 END TABLE FILE EQTPERF SUM VOLUME_CNT AS 'Container Count' BY AREA BY REGION BY DISTRICT BY ACCOUNTING_YEAR_WK ACROSS EQUIPMENT_SUBCATEGORY HEADING "Performance Report" FOOTING "---- Generated on <+0>&DATE<+0> at <+0>&TOD<+0> ----" ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON ON TABLE SET AUTODRILL ON ON TABLE SET OLAPPANE HIDDEN . . . . The rest of it is just Styling, and is irrelevant.
Any idea where I am going wrong?
Thanks, VedThis message has been edited. Last edited by: Kerry,
The problem is that your joins are creating a multipath structure
like this
*********
* *
*********
*
*
*************
* *
* *
********* **********
* * * *
********* **********
What you actually need is a single path structure
Like this
*********
* *
*********
*
*
*********
* *
*********
*
*
*********
* *
*********