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.
Is it possible to pass 2 parameters from one drop-down to another drop-down? I have 2 chained controls on the launch page. The first calls a fex file and returns 2 parameters. The second one uses another fex file that needs these 2 parameters to populate the second select box. I have the first one populating, but the second one will not.This message has been edited. Last edited by: <Kathryn Henning>,
Am I understanding this correctly? One input comes from a drop down and the second input is a define or computed field? Thus two values to populate a second window. You can do this by putting both of those values into an xml file. Then use the xml file as input to the drop down.
Kathy Phillips Web FOCUS 8.2.05.14, 8.1.05, 8.08, 8.0.7, 8.0.5,8.0.2m, 7.6.10,7.7.03 Windows
Posts: 118 | Location: Livonia, MI | Registered: March 27, 2009
first.fex
TABLE FILE USP_RPT_NAME
PRINT
ID NOPRINT
NAME
ON TABLE PCHOLD FORMAT XML
END
second.fex
-SET &IN_NAME = IF &NAME EQ 'FOC_NONE' THEN '~' ELSE &NAME;
-SET &IN_ID = IF &ID EQ 'FOC_NONE' THEN '~' ELSE &ID;
TABLE FILE USP_RPT_VNUM
PRINT
NUM
WHERE (@I_NAME EQ '&IN_NAME')
AND (@I_ID EQ '&IN_ID')
ON TABLE PCHOLD FORMAT XML
END
I need both parameters passed from the first drop-down to the second drop-down for the stored procedure. The first one is populating fine, I'm having trouble getting the second one to populate.
Have a hidden dropdown that is chained to the first dropdown that will hold the ID. I'm assuming you'll have only one Name value for every ID value, so your hidden dropdown will always return one value only that will be the ID for the Name selected on the first dropdown.