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.
-* Get data and produce file
TABLE FILE ...
ON TABLE HOLD AS MYHOLD
END
..
-* Produce report
TABLE FILE MYHOLD
..
END
..
-RUN <-- Make sure everything up to this point is executed
..
-* Delete file
-WINNT del myhold.ftm
..
José Andrés, WebFOCUS commands get "stacked" for later execution unlike Dialog Manager commands which are executed right away. That is the reason why you have to ask WebFOCUS to -RUN all commands in the stack *before* the -WINNT command attempts to remove your file.
I hope that makes sense This message has been edited. Last edited by: njsden,
Do the .FEX that produce the file and the one that produces the report run asynchronously? That's the only reason why you'd need to manually remove the file.
If they run in sequence as part of a unique session, just let the tool create the hold file in the edatemp location assigned to your session and it will be removed automatically after everything finishes.
-* Call procedure to retrieve data and create HOLD file
-INCLUDE get_data_and_hold
..
-* Do some extra stuff
..
-* Produce report out of HOLD file previouly created
-INCLUDE do_report
..
-* Done. HOLD file will be removed by the reporting server as soon as this session ends.
Is this created from a fex ?, if so it will be created in the temp directory of the agents session, and will be deleted after the execution is finished.