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 sorry for bring Tableau into this. But, what is the WebFOCUS equivalent to the Tableau 'Level Of Detail' (LOD) expression?This message has been edited. Last edited by: Doug,
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
I took a look at the Internet and found a pretty good explanation. To me it's kinda of on the order of COMPUTE with some kind of scope (FIXED, INCLUDE....) sort of.
After more thought on this, it's not "[SOLVED]". Here's the deal,
1) I need to get the shipping status at a summary level, only three statuses: 'Shipped', 'Not Shipped', and 'Partial', based on the status of multiple ORDERS for multiple PROJECTS. I was using the following code, based on the 'users documentation'.
Shipped_Status/A11=IF SHIP_STATUS NE 'Active' THEN 'Shipped'
ELSE IF SHIP_STATUS EQ 'Active' AND QTY_OPEN EQ 0 THEN 'Not Shipped'
ELSE IF SHIP_STATUS EQ 'Active' AND QTY_OPEN NE 0 THEN 'Partial' ;
-*'QTY_OPEN EQ 0' means that there are no more items to be shipped for this ORDER.
That's NOT working... Here's the user's Tableau code. They're referring to this as an "LOD Expression":
-* IF SHIP_STATUS="ACTIVE" THEN
-* IF QTY_OPEN=0 THEN 1 ELSE 0 END
-* ELSE 1 END
Thanks again...
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005