Previous Topic: 5.16.3 SRLNTC Usage ConsiderationsNext Topic: 6. DATA SOURCES


5.16.4 SRLNTC Retrieval Example


This section presents a typical SRLTRL retrieval example.

    Print a list showing the number of temporary errors
    for the resources connected to the front end processor
    whose NCP name is NCP01X for a given day:

    DATA TEMPERR;
    SET &PSRLD..SRLNTC01;
    IF NCPNAME EQ 'NCP01X';
    PROC PRINT DATA=&PSRLD..SRLNTC01;
    VAR RESOURCE NTCTRTCT;

    Quantify the various error records that are being
    logged to the SRLNTC file at the Detail time-span:
    PROC FREQ DATA=&PSRLX..SRLNTC01;
    TABLES RECMODE;

    Please see the Data Dictionary element RECMODE for
    information on how to use this information.