The following JCL for a search the detailed and summary report appear to be written to ddname ENSMSGS1 - can the summary report be written alone to a ddname(different)
//PROD EXEC PGM=NDVRC1,PARM='ENBS1000'
//SYSPRINT DD SYSOUT=*
//ENSMSGS1 DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYMDUMP DD DUMMY
//ENSSCLIN DD *
SEARCH ELEMENT '*'
FROM ENVIRONMENT 'PROD' SYSTEM '*' SUBSYSTEM '*'
TYPE 'PROCESS' FOR TEXT 'PGM=IGY'
OPTIONS LIST DETAIL SEARCH ENVIRONMENT ONLY.
the detailed and summary report appear to be written to ddname ENSMSGS1 - can the summary report be written alone to a ddname(different)
Release : 18.0
Component : CA Endevor Software Change Manager
The output from the ENSMSGS1 can be written to a dataset. Example provided below:
//PROD EXEC PGM=NDVRC1,PARM='ENBS1000'
//SYSPRINT DD SYSOUT=*
//ENSMSGS1 DD DSN=iprfx.iqual.OUTPUT,
// DISP=(NEW,CATLG),
// UNIT=SYSDA,
// SPACE=(CYL,(1,1)),
// DCB=(RECFM=FB,LRECL=133,BLKSIZE=0)
//SYSUDUMP DD SYSOUT=*
//SYMDUMP DD DUMMY
//ENSSCLIN DD *
SEARCH ELEMENT '*'
FROM ENVIRONMENT 'PROD' SYSTEM '*' SUBSYSTEM '*'
TYPE 'PROCESS' FOR TEXT 'PGM=IGY'
OPTIONS LIST DETAIL SEARCH ENVIRONMENT ONLY.