How is the ACFRPTLL - LOGONID Modification Log report ran in batch? Is there sample JCL?
Release: ACF2 R16
Component: ACF2MS
The ACFRPTLL report generator uses the SMF records issued for ACF2 recovery purposes to provide an updated activity report for the Logonid database. ACF2 provides sample JCL called REPORTS in ACF2.SAMPJCL.
This batch job will run ACFRPTPP (preprocessor) followed by several reports including ACFRPTLL, using the output from ACFRPTPP instead of SMF datasets.
The ACFRPTLL report parameters can be specified using one of these methods:
The PARM parameter of the EXEC statement in the JCL or SYSIN input.
The ACFRPTLL report uses standard ACF2 report JCL like the following two examples for batch submission.
Example 1 Using PARM statement for report parameters.
//REPORT EXEC PGM=ACFRPTLL,PARM=('TITLE(SAMPLE ACFRPTLL)', // 'DETAIL,UPDATE,MASK(********)') //SYSPRINT DD SYSOUT=* //* THE FOLLOWING DDS SHOULD POINT TO THE SMF DATASETS or ACFRPTPP output datasets //RECMAN1 DD DISP=SHR,DSN=SYS1.MAN1 //RECMAN2 DD DISP=SHR,DSN=SYS1.MAN2 //RECMAN3 DD DISP=SHR,DSN=SYS1.MAN3 //SYSIN DD * //
Example 2 Using SYSIN DD for report parameters.
//REPORT EXEC PGM=ACFRPTLL //SYSPRINT DD SYSOUT=* //* THE FOLLOWING DDS SHOULD POINT TO THE SMF DATASETS or ACFRPTPP output datasets. //RECMAN1 DD DISP=SHR,DSN=SYS1.MAN1 //RECMAN2 DD DISP=SHR,DSN=SYS1.MAN2 //RECMAN3 DD DISP=SHR,DSN=SYS1.MAN3 //SYSIN DD * DETAIL MASK(*******) UPDATE //*