Previous Topic: 5.10.3 SRL_UD Usage ConsiderationsNext Topic: 5.11 SRL System Software Malfunction Summary (SRLSSM) File


5.10.4 SRL_UD Retrieval Examples


This section presents typical SRL_UD retrieval examples.

1.  Print a list showing the jobs that abended yesterday and
    the number of times they abended and percentage versus
    the other jobs that abended.  This can help identify
    those jobs that are failing more often than others, and
    steps may be taken to correct the situation.

    PROC FREQ DATA=&PSRLX..SRL_UD01;
    TABLES SSDJOB;

2.  Print a list of all jobs beginning with PROD that abended
    yesterday and their system completion codes.

    DATA;
    SET &PSRLX..SRL_UD01;
    IF SSDJOB EQ:  'PROD';
    PROC PRINT; VAR SYSID SSDJOB SSDSCMPC;