Previous Topic: 5.11.3 SRLSSM Usage ConsiderationsNext Topic: 5.12 User Software Malfunction (SRL_UM) File


5.11.4 SRLSSM Retrieval Examples


This section presents typical SRLSSM retrieval examples.

1.  Print a list showing the operating system modules or
    routines which encountered failures and the frequency of
    failures over the last month.

    PROC FREQ DATA=&PSRLM..SRLSSM01;
    TABLES MODULE;

2.  Print a list of failures that occurred yesterday for a
    specific module that you are tracking and the associated
    job name, program name, CSECT and System Completion code.

    DATA;
    SET &PSRLX..SRLSSM01;
    IF MODULE EQ: 'IKJEFT01';
    PROC PRINT;
    VAR CPUSER SYSID SSMJOB SSMABPGM SSMCSECT
        SSMSCMPC;