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 need to use data from three files having same layout. can i append the data from all these sources at the time of allocation itself? If yes, please let me know of the syntax or any link where i can find it.
Eg: I have three datasets viz. ABC1, ABC2 and ABC3. Layout and format is same for all these three files.
I want to use a single DYNAM ALLOC to get the data from all these three files. How can I achieve this?
Thanks!This message has been edited. Last edited by: Kerry,
Not sure if the same applies now-a-days (it's been a while since I used MVS, Z/OS etc.) but DYNAM ALLOC could only allocate a DSN when it had not been allocated previously. If it had then you need to free it first.
Also, there did appear to be a difference between DYNAM ALLOC etc. and TSO ALLOC etc. Such as DYNAM FREE did not work against a file that was DD'd where as TSO FREE would.
Just be aware of these differences as they may help you progress when you think you are stuck.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Waz, I don't want DYNAM ALLOCating each file as they have exactly the same layout. I want to use the same master layout. If I allocate each file separately, then I will have to use different masters which I don't want.
Like Waz suggested, you DYNAM ALLOC each file individually and then use DYNAM CONCAT to concatenate them as one file. One of the DYNAM ALLOC file's DDNAME should be the Master you want to use in your report. Something like this:
Although you can allocate multiple files to a DDNAME in JCL, the DYNAM command doesn't allow for this, and I don't think that the TSO ALLOC command does either.