Recently added a new system/sub-system to Endevor replacing the previous version of the system/sub-system. It was discovered that other seemingly unrelated systems/sub-systems have a link back to the system that need to be changed. Is there ability to dump all of the processor group information into a flat file so we can see at a glance, which each of them are referencing?
All Supported Releases
The CSV Utility is recommended to obtain the processor group information. You can run the report, send the output to a sequential file and then create an Excel Spreadsheet to review all the information.
Here is a sample JCL you can use:
//STEP1 EXEC PGM=BC1PCSV0,
// PARM='CONCALL,DDN:CONLIB,BC1PCSV0'
//STEPLIB DD DISP=SHR,DSN=iprfx.iqual.CSIQAUTU
// DD DISP=SHR,DSN=iprfx.iqual.CSIQAUTH
// DD DISP=SHR,DSN=iprfx.iqual.CSIQLOAD
//C1MSGS1 DD SYSOUT=*
//CSVLST DD DSN=iprfx.iqual.CSVLST,
// DISP=(NEW,CATLG,DELETE),
// DCB=(DSORG=PS,RECFM=VB,LRECL=4092,BLKSIZE=4096),
// SPACE=(CYL,(5,5),RLSE)
//BSTERR DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//CSVIPT01 DD *
LIST PROCESSOR GROUP '*' TO FILE 'CSVLST'
FROM ENV PROD
SYS *
TYP *
STA *
OPTIONS PATH PHYSICAL SEARCH RETURN ALL .
For more information on the CSV Utility check out the List Element, Component, Data Set, Processor Group, Directory Information.