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.
Calling a FOCEXEC from a batch program requires you to call the WebFOCUS server directly or the WebFOCUS client directly. The WebFOCUS server is more consistent as installation options go, so here are a few hints for its use:
In your \ibi\srv52\wfs\bin directory you will find "edastart.bat". This allows you to start the server, run a "FOCUS" session and call programs with various flags. The flag you need for running batch (if your program does a HOLD or SAVE) is:
edastart -x fexname
Try edastart -? to get more options. I use edastart -t for testing. All the paths, etc. are as defined in your edasprof.prf
You can write a small c or visual basic program that can be used to launch a focus RPC (fex). I wrote two, one uses http connections to webfocus and returns the resulting report in html - the other uses the API instead of http. This version returns the report as plain text.
The API code is based on the example code supplied with the eda client. The code currently processes SQL queries. All you have to do is to modify it to process RPC calls. The function you will need to get info on is EDARPC. There were only a few changes that needed to be made to make the thing work.
The exe file will have to accept parameters like, eda_server_name, id, password, fex_name, and a parameter string that will be passed into the fex.
We use this exe to launch RPCs from within other focus fexs and to launch RPCs from batch files and using the scheduler.
One other thing to understand w.r.t. John's suggestion of using the "edastart -x" option is that the command executed runs within its own dedicated tscom3 process. It does not connect to the WebFOCUS server via a normal client/server EDA connection, does not get managed by the server's Workspace Manager, and does not use one of the Reporting Server's tscom3 agent processes.
In fact the Reporting Server does not have to be running at all in order for you to use "edastart -x".
If you do use "edastart -x" you can also look at redirecting any error messages or output to a log file, e.g., "edastart -x EX CARINST >> carinst.log".
All the best,
Posts: 5 | Location: Melbourne, Australia | Registered: March 31, 2003