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 4 dropdowns on the html page and user could select one or all of them. These values (fields) would be used in the fex to display in the selected sort order. For example: if I have four dropdowns for fields car, model, country, dealer cost. When a user selects first dropdown value as car and selects nothing in the rest of the dropdowns, report would be sorted and aggregate the numbers based on car field. But, in the drilldown to see the detail behind the aggregated number, user would like to see drilldowns (as drillmenu items) on the rest of the fields that were not selected from the html page dropdown. I can hardcode saying if &by1 is car, then have drillmenu items for country, model and dealer cost. if &by1 is model, then have drill menu items for car,country and dealer cost. But, I think this is tedious and I would like to know if there is a easy way to do this instead of harding coding all the values like this. Besides, user could be selecting one or multiple sorts. Any ideas please?
Thank you.This message has been edited. Last edited by: Kerry,
aha. i do this all day long.... i have a parm called BYFIELD and i set it to whatever the user selects as the first BY. then i create comment markers in my fex. -SET &cmt_car=IF &BYFIELD IS 'CAR' THEN '-*' ELSE ''; -SET &cmt_model=IF &BYFIELD IS 'MODEL' THEN '-*' ELSE ''; -SET .. you get it.
then in my drilldown &cmt_car.EVAL DRILLMENUITEM='sort by car',focexec=&dd0(BYFIELD = 'CAR' , ....), &cmt_model.EVAL DRILLMENUITEM='sort by model',focexec=&dd0(BYFIELD = 'MODEL' , ....), &cmt_country.EVAL ... you get it.
user only sees what they haven't sorted by. you can expand on this idea of using &cmt_ variables to comment out lines you don't need in a ton of ways.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003