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.
We are currently on 8.2.02M and working on a new page within Page Designer. This page has four multi-select filters that are linked to four charts within the page. Each of the charts have drilldowns that pass these four filters down to the next level. When the filters are _FOC_NULL ("All Values") or a single value, everything works as expected. If the user selects multiple values for a filter, the drilldown becomes broken when trying to pass these multiple values (ex. LOCATION='STRING1' OR 'STRING2' OR 'STRING3'). Has anyone else ran into this issue or know a simple solution on how to pass multi-select parameters through drilldowns? Any help would be greatly appreciated.This message has been edited. Last edited by: mk_ia_usr,
Posts: 5 | Location: Pennsylvania | Registered: March 20, 2017
Can you show us the WHERE tests in one of the charts? It sounds like you have a single select where test. A single select where would look something like this:
WHERE VENDOR EQ &VENDOR.(<0000000008,0000000008>, <0000000020,0000000020> |FORMAT=A12V).VENDOR:.QUOTEDSTRING;
And a multi select would look like this:
WHERE VENDOR EQ &VENDOR.(OR(<0000000008,0000000008>, <0000000020,0000000020> |FORMAT=A12V)).VENDOR:.;
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
Martin, this worked perfectly. Once I updated the drilldowns to use .QUOTEDSTRING, the multi-select parameters from the Page Designer page, were passed correctly all the way through the drill down. Thank you!!
Babak - For the record, I did have a multi-select WHERE statement within the chart. Thank you for the response. WHERE ITEM EQ &ITEM_.(OR(FIND ITEM IN TABLE |FORMAT=A100V)).Item:.;
Posts: 5 | Location: Pennsylvania | Registered: March 20, 2017