The article documents how to run the ACF2 ACFRPTRX-The Logonid Access Report in batch and provides sample JCL.
The ACFRPTRX report generator produces a Logonid Access Report showing all rule sets that apply to a specific logonid (LID) mask or user identification string mask.
ACF2 provides a sample report named REPORTS in the ACF2 SAMPJCL library.
The ACFRPTRX report parameters can be specified using either the PARM parameter of the EXEC statement in the JCL or the SYSIN DD.
The ACFRPTRX report uses standard ACF2 report JCL for batch submission as shown in the following two examples:
Example 1 Using PARM statement for report parameters
//REPORT EXEC PGM=ACFRPTRX,PARM=('TITLE(SAMPLE ACFRPTRX)', // 'RSRC,TYPE(FAC)') //SYSPRINT DD SYSOUT=* //SYSUT1 DD UNIT=SYSDA,SPACE=(CYL,(2,2)),DCB=BUFNO=5 //SYSUT2 DD UNIT=SYSDA,SPACE=(CYL,(2,2)),DCB=BUFNO=5 //SYSIDLST DD * LID(********) LID(B*******) //*
Example 2 Using SYSIN file for report parameters
//REPORT EXEC PGM=ACFRPTRX //SYSPRINT DD SYSOUT=* //SYSUT1 DD UNIT=SYSDA,SPACE=(CYL,(2,2)),DCB=BUFNO=5 //SYSUT2 DD UNIT=SYSDA,SPACE=(CYL,(2,2)),DCB=BUFNO=5 //SYSIDLST DD * LID(A*******) LID(B*******) //SYSIN DD * TITLE(SAMPLE ACFRPTRX) RSRC TYPE(FAC) //*
Details on the ACFRPTRX report and all available parameters can be found in ACFRPTRX-The Logonid Access Report.