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?
Release : 18.0
Component : CA Endevor Software Change Manager
The CSV Utility is recommended to obtain the processor group information. You can run the report, send the output to a sequential file, then create an Excel Spreadsheet to review all the information.
Here is a sample of the JCL you can use:
//STEP1 EXEC PGM=BC1PCSV0,
// PARM='CONCALL,DDN:CONLIB,BC1PCSV0'
//STEPLIB DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQAUTU
// DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQAUTH
// DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQLOAD
//C1MSGS1 DD SYSOUT=*
//CSVLST DD DSN=your.csv.dataset,
// DISP=(NEW,CATLG,DELETE),
// DCB=(DSORG=PS,RECFM=VB,LRECL=4092,BLKSIZE=4096),
// SPACE=(CYL,(5,5),RLSE)
//BSTERR DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//BSTIPT01 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.