Previous Topic: 5.2.3.3 DEA_LF Usage Considerations

Next Topic: 5.2.4 VMS ACCOUNTING Print Queued File (DEAPRQ)

5.2.3.4 DEA_LF Retrieval Examples


This section presents a typical DEA_LF retrieval example.

1.  Print a list of all terminals that had LOGIN failures for
    node DEV1 yesterday.

    DATA;
    SET &pDEMX..DEA_LF01;
    IF DATEPART(ENDTS)=TODAY()-1;
    IF SYSID='DEV1';
    PROC PRINT;
     VAR DEXTERM;