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 fex that works fine when run directly via Dev Studio, but when run as an -MRNOEDIT -INCLUDE (as I intend to do from here on out), I get prompted for a couple of variables. The nature of the FEX is that it first determines who you are and second, using that UserID, looks up what you have access to. It determines who you are via the &IBIMR_user and &DSTEDAUSER variables. When run from Dev Studio, it prompts for &DSTEDAUSER. If I click through the prompt (without supplying a value), everything works fine.
I believe this is because the INCLUDE gets processed at the server and he has no idea who &IBIMR_user or &DSTEDAUSER are. How can I fool it into working? Seems like I need to set a default value and then read the real value, but nothing seems to be working for me.
Have you unchecked the "Prompt for Parameters" box in the Properties settings for the fex? You may need to uncheck this box for both procedures.This message has been edited. Last edited by: Dan Satchell,
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Thanks for the feedback, been down all those roads and each was less than ideal.
- Prompt for parameters could not be unchecked since the FEXs are also being used as is in a dashboard. they need to prompt for their own parameters, but not mine for this file.
- Defaults. This just sets the value in the prompt (at least in my testing).
The major issue was that DSTEDAUSER is a client variable that the FEX (which is being run at the server) has no scope of. With my rep's aid (thanks Lee), I put a line in the config to pass that variable (with IBIMR_user's value) to the server (this is in a manual somewhere, I read it and was either confused as to if this is what I needed or too scared to do it). Clear cache, done. Hope someone else gets some use out of my headache.