My apologies for a redundant query.
We have a need to find the load library name from where the CICS program load is being picked.
I am aware of DFHRPL concatenations, and the 'CEMT I PROG' command, both of which give what I am looking for; same returns the below when invoked for one test program:
I PROG(XXXXXXXX)
RESULT - OVERTYPE TO MODIFY
Program(XXXXXXXX)
+ Runtime( Lenv )
Remotename()
Library(DFHRPL)
Librarydsn(ABC.XYZ.DEF)
RESULT - OVERTYPE TO MODIFY
Program(XXXXXXXX)
+ Runtime( Lenv )
Remotename()
Library(DFHRPL)
Librarydsn(ABC.XYZ.DEF)
We have multiple PDS/E concatenated in DFHRPL, at times multiple copies of the same load program can be present in the PDS/E depending upon the development phase; load being picked from the one which is at the top of the concatenation (i.e. latest changes to the source).
The point where I am stuck is, I have around 500+ components, for which I need to find the PDS/E from where the load is being picked, doing so manually by individually checking DFHRPL or doing a 'CEMT I PROG' is cumbersome.
Query: Is there a DFH* utility which can give me what I am looking for (I am not sure if DFHEISUP will give me the desired result); or if there is a way to extract the Librarydsn information of all the load modules that are currently loaded to CICS (loaded to CICS meaning, they have been accessed in CICS at least once or are NEWCd).
'Librarydsn' is populated when a CICS program is NEWCd or accessed/loaded for the first time in CICS.
Any pointers to do this would be very helpful.
Thank you.