Previous Topic: 5.3.15.3 VMXXSF Usage Considerations

Next Topic: 5.3.16 VMX Shared Storage Management File (VMXXSS)

5.3.15.4 VMXXSF Retrieval Examples


List all saved systems in the VMXXSF File.  File class and
type from observations based on activity data will be changed
from blanks to hyphens for readability.

   DATA VMXXSS;
     SET &VMXX..VMXXSF01; BY SYSID XSSNAME;
     IF LAST.XSSNAME;
     /* INFORMATION FROM ACTIVITY DATA ? */
     IF VMXSTCHG = '--' AND XSSCLASS = ' ' THEN DO;
       XSSFTYPE = '   --   ';
       XSSCLASS = '-';
     END;
   RUN;
   PROC PRINT SPLIT='*'; BY SYSID;
     ID XSSNAME;
     VAR XSSFCRTM XSSFTYPE XSSSPLID XSSCLASS;
     LABEL XSSNAME='System Name'
           XSSFCRTM='File Creation Time'
           XSSSPLID=' Spool*File Id'
           XSSFTYPE='System Type'
           XSSCLASS='Class';
     TITLE "Saved Systems Defined";
   RUN;