AT8#RPT is a reporting utility used to report on tracking file entries and optionally generate commands that can be used to perform security file cleanup. The CDMFJCL0 member DBRPT executes the AT8#RPT utility to report on the Cleanup database. What is the DCB information that should be specified in the SYSPRINT DD statement in this job to write the output to DASD?
The SYSPRINT DD used by the AT8#RPT utility can be changed to write the SYSPRINT output to DASD using the DCB options:
RECFM=FBA, LRECL=133, BLKSIZE=1330.
For example the DBRPT JCL can be modified as follows:
//S1 EXEC PGM=AT8#RPT,REGION=4M,PARM='UNREF=15' //DBASE DD DISP=SHR,DSN=CAI.ETCL.DB //* //SYSPRINT DD DISP=(,CATLG,DELETE),DSN=dbrpt.report.output, // UNIT=SYSDA,VOL=SER=XXXXXX,SPACE=(xxx,(ppp,ss,dd)), // DCB=(RECFM=FBA,LRECL=133,BLKSIZE=1330) //SYSOUT DD DUMMY //SORTWK01 DD UNIT=3390,SPACE=(CYL,15) //SORTWK02 DD UNIT=3390,SPACE=(CYL,15)
See Report Utility JCL for Cleanup for RACF for more information on AT8#RPT utility.