Description:
Is there an option for running a TSSAUDIT CHANGES report and have the output go to a dataset instead of a SYSOUT file?
Solution:
The output from a TSSAUDIT report can be written to a dataset. The following DCB attributes are set by TSSAUDIT and cannot be changed: DSORG=PS, RECFM=FBA, LRECL=133, and BLKSIZE=1330.
Here is some sample jcl:
//insert valid jobcard here //TSSAUDIT EXEC PGM=TSSAUDIT,REGION=2048K //AUDITOUT DD DSN=audit.output.dataset,DISP=SHR //RECOVERY DD DSN=your.recover.file,DISP=SHR //AUDITIN DD * CHANGES /*
'audit.output.dataset' is the dataset for the output.
'your.recover.file' is the recovery file.