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.
Hi Guys let suppose we have two server configured in our client can we switch between these servers at runtime when a user select QA then it will hit QA server and when user select PROD then it will hit prod server ? it like changing application path like we do using APP PATH..This message has been edited. Last edited by: FP Mod Chuck,
Webfocus 8.x Windows PDF,HTML,XLSX
Posts: 58 | Location: India | Registered: June 01, 2018
You need to have a variable in your master file which will be set according to selection Same technic as explain in the following (except the RC part) : variable master
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
Are the Tables the same from UAT to Prod ? Are the DB's in the same server or different servers ?
You could use Martin's answer, or another option is to base the change on the connection.
The idea is to have two connections defined in the reporting server, and use ENGINE {db server type} SET DEFAULT_CONNECTION {servername} to point to the connection defined.
Hi Martin and Waz thanks for replying. Yes we do have an option we can just change the connection at runtime and have two adapters available for PROD and QA. But can we change the &_EDA_NODE inside a fex procedure
Webfocus 8.x Windows PDF,HTML,XLSX
Posts: 58 | Location: India | Registered: June 01, 2018
No, once you are running the fex it is already in a reporting server (EDA Node).
Your options are to set the node on the page running the fex, possibly setting the node in site.wfs ?? or possibly calling the other server and executing the code there (a bit more infrastructure setup needed).
There is probably other options, but that is first hings that came to mind.