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'm working on a FEX that will create a file on our mainframe, that will be used the following day in another program. What format should I use for saving rthe file? FOCUS? VTAM? FLAT?
The reason I'm asking is that yesterday, I ran my FEX and according to my SYSOUT LOG, an output file was created, but I don't see the outoput file on my mainframe.
Thank you to anyone who can advise me....This message has been edited. Last edited by: Kerry,
Can I assume you mean, by allocationg it as permanent, set up an empty flat data file on the mainframe first, and then to populate that empty data set with a "first run" FEX? Just trying to confirm, because I'm still rusty on this stuff, not having done it since 1997.
Well, it has been quite awhile for me as well. But it should be the same in any environment. I am assuming that you are running your fex on the mainframe. In that fex, do a DYNAM ALLOC ddname DSN permanent.dataset.name plus disposition options or something like that. Then in your TABLE request, HOLD AS ddname FORMAT ALPHA. The data should then go into permanent data set.
Don't forget that you'll have to allocate HOLDMAST to save the generated master.
Then the programs that use the file will have to have a DYNAM ALLOC in them to reference the permanent data set.