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 do have a question about WebFOCUS Enterprise Edition 8.2
On here, I want to create a page/dashboard, which includes multiple charts/reports. These charts/reports have multiple filters, which will automatically be included in the page/dashboard as a combobox
In this case I have 3 comboboxes/filters (say i.e. 'Country, 'Town' and 'Date')
Is there a way (on the page/dashboard) to make sure that if I select a Country, that the filter/combobox of Town automatically filters out all the irrelevant other towns (so not specific to that certain Country) So kind of a 'drill down'. Haven't been able to find it so far
Chaining the controls for the Page Designer is little tricky.
You can do that using WITHIN command in the filter.
First Where Condition. Second Where condition With in First Third Where condition With in Second.
TABLE FILE ibisamp/car
BY CAR.ORIGIN.COUNTRY
BY CAR.COMP.CAR
BY CAR.CARREC.MODEL
BY CAR.BODY.BODYTYPE
WHERE (CAR.ORIGIN.COUNTRY EQ &COUNTRY.(FIND CAR.ORIGIN.COUNTRY IN ibisamp/CAR |FORMAT=A10,SORT=ASCENDING).COUNTRY:.QUOTEDSTRING);
WHERE (CAR.COMP.CAR EQ &CAR.(FIND CAR.COMP.CAR IN ibisamp/CAR |FORMAT=A16,WITHIN=COUNTRY).CAR:.QUOTEDSTRING);
WHERE (CAR.CARREC.MODEL EQ &MODEL.(FIND CAR.CARREC.MODEL IN ibisamp/CAR |FORMAT=A24,WITHIN=CAR).MODEL:.QUOTEDSTRING);
ON TABLE PCHOLD FORMAT HTML
ON TABLE NOTOTAL
ON TABLE SET CACHELINES 100
ON TABLE SET GRWIDTH 1
ON TABLE SET STYLE *
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/ibi_themes/Warm.sty,$
TYPE=REPORT, TITLETEXT=&WF_TITLE.QUOTEDSTRING, SUMMARY=&WF_SUMMARY.QUOTEDSTRING, ORIENTATION=LANDSCAPE, $
ENDSTYLE
END
The Designer will chain the parameters automatically if they are in a hierarchy. For instance, if you look at WF_RETAIL (sample file) Product dimension has Product Category and Product Subcategory in a virtual hierarchy within the master file. If you use them in a filter, they'll automatically be chained.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
First of all Welcome to Focal Point. It is a great forum for getting answers to your development questions
I have also found that if you have the hierarchy of fields defined as dimensions in the master file description it will automatically do the chaining in the portal page.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005