Does TSSUTIL support more then one UTILIN DD option?
If TSSUTIL supports more then one UTILIN DD option, is there a way to force the Job to continue with next line?
Yes, TSSUTIL it does support more then one UTILIN DD option.
JCL example below:
======================================================================
//UTIL1 EXEC PGM=TSSUTIL
//SYSPRINT DD SYSOUT=C
//UTILOUT DD SYSOUT=J,CHARS=HN12
//SMFOUT DD SYSOUT=C
//SMFIN DD DISP=SHR,DSN=TSS.AUDIT1
//UTILIN DD *
REPORT ACID(S06A) DATE(-01) EVENT(ALL) LONG END
REPORT ACID(S06B) DATE(-01) EVENT(ALL) LONG END
REPORT ACID(S03) DATE(-01) EVENT(ALL) LONG END
REPORT ACID(B27Z) DATE(-01) EVENT(ALL) LONG END
REPORT ACID(T11Z) DATE(-01) EVENT(ALL) LONG END
REPORT ACID(T13Z) DATE(-01) EVENT(ALL) LONG END
======================================================================
...ran until line:
======================================================================
REPORT ACID(B27Z) DATE(-01) EVENT(ALL) LONG END
======================================================================
...failed with:
======================================================================
TSS8007E ACCESSOR ID UNKNOWN
======================================================================
There is no way to force the Job to continue with the next line. When specifying TSSUTIL input parameters, the ACID will be verified to see if it exists on the system where the TSSUTIL report is being run.
If it doesn't exist, message TSS8007E - ACCESSOR ID UNKNOWN will be displayed.
To report on the ACID receiving the TSS8007E message, TSSUTIL must be run on the system where this ACID is defined.
If an ACID isn't specified, i.e. 'REPORT EVENT(ALL) END', then this will run on any system.
This is working as designed. Please see KB Article #54164.