The report format

The report format has a 1-4 character name (for example, SELU) that is a member name in the partitioned data set created by the IEBUPDTE utility. The ICETOOL statements control the report format and record summary information, such as SORT, COPY, DISPLAY, and OCCURS statements. An example of a report format member is shown in Figure 1. This is the report format member SELU, which is the report format for the "Selected User" report. See z/OS DFSORT Application Programming Guide for the complete details of the DFSORT statements.

Figure 1. Member SELU: Selected User Report report format statements
**************************************************************
* Name: SELU                                                 *
*                                                            *
* Find all of the records which are applicable to a specific *
* user ID.                                                   *
*                                                            *
**************************************************************
COPY    FROM(ADUDATA) TO(TEMP0001) USING(RACF)
DISPLAY FROM(TEMP0001) LIST(PRINT) -
        PAGE -
        TITLE('SELU: Events Associated with a Specific User')-
        DATE(YMD/) -
        TIME(12:)  -
        BLANK -
        ON(63,8,CH)  HEADER('User ID') -
        ON(72,8,CH)  HEADER('Group') -
        ON(5,8,CH)   HEADER('Event') -
        ON(12,8,CH)  HEADER('Qualifier') -
        ON(23,8,CH)  HEADER('Time') -
        ON(32,10,CH) HEADER('Date') -
        ON(43,4,CH)  HEADER('System') -
        ON(175,8,CH) HEADER('Terminal') -
        ON(184,8,CH) HEADER('Jobname')