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 a drop down that is populated dynamically from a table. I checked 'Add ALL Option" in parameters to display ALL on top of values in drop down.
When ALL is selected, _FOC_NULL is sent to the fex in the background. Can we send a custom value directly from HTML page when ALL is selected without writing a SET in the fex?
Please suggest
Thanks.This message has been edited. Last edited by: <Kathryn Henning>,
you'll have to be willing to write a fex to populate your dropdown, and not pull from a masterfile. we do it this way. we never ever use the 'add ALL option'; Are you willing to do that?
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
Originally posted by susannah: you'll have to be willing to write a fex to populate your dropdown, and not pull from a masterfile. we do it this way. we never ever use the 'add ALL option'; Are you willing to do that?
hi Susannah
how do we get ALL option when populating from a fex? even when we use master file, backend its a procedure correct.
ok, i'll write you a little fex. give me 10 mins, and i'll update this post with a fex you can run on the car file.
APP PATH IBISAMP
TABLE FILE EMPLOYEE
PRINT COMPUTE NAME/A30=LAST_NAME || ', '|FIRST_NAME ; BY EMP_ID
ON TABLE HOLD AS H2
END
DEFINE FILE EMPLOYEE
EMP_ID/A9 WITH LAST_NAME='ALL';
NAME/A30 WITH EMP_ID='MY EXES LIVE IN TEXAS';
END
TABLE FILE EMPLOYEE
PRINT EMP_ID NAME
IF RECORDLIMIT IS 1
ON TABLE PCHOLD FORMAT XML
MORE
FILE H2
END
This message has been edited. Last edited by: susannah,
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003