With regard to your second wish, for lack of a better universal tool, I use the following to obtain the link-edit dates for all of the load modules in a library. Getting the compile dates of all of the component object modules would seems to be much harder because of the variety of compilers that might be involved.
//*------------------------------------------------------------- //* //* This job serves to list the link-edit dates for all members of //* a PDS/PDSE load library. It works by running AMBLIST against //* the entire library with its output going to a temporary data //* set and then runs SORT to extract only the lines containing the //* module name and date the module was linked. //* //* Change the SET SYSLIB below to the desired load module library. //* //*------------------------------------------------------------- // SET SYSLIB=<target-load-library> //*------------------------------------------------------------- //LOADLIB EXEC PGM=AMBLIST //*SYSPRINT DD SYSOUT=* //SYSPRINT DD DISP=(NEW,PASS),DSN=&&AMBLIST, // UNIT=(SYSDA,3),SPACE=(TRK,(3000,300),RLSE), // DCB=(RECFM=FBA,LRECL=133,BLKSIZE=0) //SYSLIB DD DISP=SHR,DSN=&SYSLIB LISTLOAD OUTPUT=XREF //*------------------------------------------------------------- //SELECT EXEC PGM=SORT //SYSOUT DD SYSOUT=* //SORTIN DD DISP=OLD,DSN=&&AMBLIST //SORTOUT DD SYSOUT=* //SYSIN DD * INCLUDE COND=(6,6,CH,EQ,C'MEMBER',OR,2,13,CH,EQ,C'THIS PROGRAM') OPTION COPY // - Art Celestini At 07:42 AM 7/4/2011, Hilary Hurwitz wrote: >I recently moved from being System programmer and ADABAS DBA in a VSE/ESA shop >and "converted" myself to DBA in a Z/OS 1.9 shop. > >I am still a little overwhelmed by the sheer volume of work, and I managed to >get used to saying ISPF and JES instead of Vollie and Power :) > >I really miss one function - provided by FAQS/ASO. > >At the end of every batch job, it printed out a list of modules used and which >libraries they were taken from. > >Since we are in the middle of some major conversions here and have pretty >complicated jcl procs, it would really help me to have this feature. > >Has anyone written it ? Could it be done ? Maybe in REXX ? > >The other thing I would like is to be able to see the compile dates in a load >library - all the library at once. We do have File Aid, but it is a pain to >get all dates (and maybe even sort on date ?) > >Ah - the wish list gets longer. > >Thanks for your help > >Hilary Hurwitz >Israel National Insurance (Social Security) ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

