How to extract a report of defined Endevor subsystem and subsystem title in the all environments
All supported Releases
The CSV utility can provide that information - Here is a sample JCL that can be used:
//*************************************
//* DELETE CSV LIBRARY
//*************************************
//STEP1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
DELETE 'UPRFX.SUBS.CSV'
//*********************************************
//* SPECIFY ELEMENT NAME WITH SEARCH *
//*********************************************
//STEP1 EXEC PGM=NDVRC1,REGION=4M,
// PARM='CONCALL,DDN:CONLIB,BC1PCSV0'
//STEPLIB DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQAUTU
// DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQAUTH
//CONLIB DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQLOAD
//C1MSGS1 DD SYSOUT=*
//CSVLST DD DSN=UPRFX.SUBS.CSV,
// DISP=(NEW,CATLG,DELETE),
// DCB=(DSORG=PS,RECFM=VB,LRECL=4092,BLKSIZE=4096),
// SPACE=(CYL,(800,500),RLSE)
//BSTERR DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//BSTIPT01 DD *
LIST SUB *
FROM ENV *
SYS *
STA *
TO FILE CSVLST
.
Once the sequential file is created, download it to your desktop and create an excel spreadsheet. Use this KB for instuctions: