Previous Topic: 3.1.2.1.6 Generating Reports & SAS Listing Options (RMFPP)

Next Topic: 3.2 MICF Inquiries

3.1.2.2 Postprocessor Control Card Examples



1.  Print CPU Activity Postprocessor report from DETAIL
    timespan using latest cycle.

    //jobname  JOB  ...
    //RMFPP    EXEC MICSSHRx
    //SYSIN    DD   DSN=sharedprefix.MICS.INCLLIB(RMFRPTS),
    //           DISP=SHR
    //CONTROL  DD *
    %LET TSPAN   = DETAIL;
    %LET CYCLES  = 01;
    %LET REPORTS = CPU;
    %RMFPP;
    /*

2.  Print Workload Activity Goal Mode Postprocessor report
    from DAYS timespan using latest cycle and summarizing to
    day.  A summarization technique of DETAIL is used by
    default.

    //jobname  JOB  ...
    //RMFPP    EXEC MICSSHRx
    //SYSIN    DD   DSN=sharedprefix.MICS.INCLLIB(RMFRPTS),
    //           DISP=SHR
    //CONTROL  DD *
    %LET TSPAN   = DAYS;
    %LET CYCLES  = 01;
    %LET SUMBY   = DAY;
    %LET REPORTS = WLMGL;
    %RMFPP;
    /*

3.  Print Device Activity Postprocessor report from DETAIL
    timespan using latest cycle and selecting 3390 device
    types only.

    //jobname  JOB  ...
    //RMFPP    EXEC MICSSHRx
    //SYSIN    DD   DSN=sharedprefix.MICS.INCLLIB(RMFRPTS),
    //           DISP=SHR
    //CONTROL  DD *
    %LET TSPAN   = DETAIL;
    %LET CYCLES  = 01;
    %LET REPORTS = DEVICE;
    %LET SELECT  = %STR(IF DEVTYPE=:'3390';);
    %RMFPP;
    /*

4.  Print Channel Path Activity Postprocessor report from
    DAYS timespan using cycles 03,02,01.  Summarize to zone.
    Specify a summarization technique of DETAIL so that each
    zone of each day is summarized separately.

    //jobname  JOB  ...
    //RMFPP    EXEC MICSSHRx
    //SYSIN    DD   DSN=sharedprefix.MICS.INCLLIB(RMFRPTS),
    //           DISP=SHR
    //CONTROL  DD *
    %LET TSPAN   = DAYS;
    %LET CYCLES  = 03 02 01;
    %LET SUMBY   = ZONE;
    %LET SUMTYPE = DETAIL;
    %LET REPORTS = CHANNEL;
    %RMFPP;
    /*

5.  Print Channel Path Activity Postprocessor report from
    DAYS timespan using cycles 03,02,01.  Summarize to zone.
    Specify a summarization technique of COMPOSITE so that
    the same zone of all days is summarized together.

    //jobname  JOB  ...
    //RMFPP    EXEC MICSSHRx
    //SYSIN    DD   DSN=sharedprefix.MICS.INCLLIB(RMFRPTS),
    //           DISP=SHR
    //CONTROL  DD *
    %LET TSPAN   = DAYS;
    %LET CYCLES  = 03 02 01;
    %LET SUMBY   = ZONE;
    %LET SUMTYPE = COMPOSITE;
    %LET REPORTS = CHANNEL;
    %RMFPP;
    /*

6.  Print Paging Activity Postprocessor report from DETAIL
    timespan using latest cycle.  Display SAS source
    statements, SAS MACRO expansion statements, and
    diagnostic messages in the SAS log.

    //jobname  JOB  ...
    //RMFPP    EXEC MICSSHRx
    //SYSIN    DD   DSN=sharedprefix.MICS.INCLLIB(RMFRPTS),
    //           DISP=SHR
    //CONTROL  DD *
    %LET TSPAN   = DETAIL;
    %LET CYCLES  = 01;
    %LET REPORTS = PAGING;
    %RMFPP (DBUG=ON,SOURCE=ON,MPRINT=ON);
    /*

7.  Print Cache Subsystem Detail report from DETAIL timespan
    using latest cycle for control unit '01AC'
    (CUADDR='01AC', CUDEVNUM=428).

    //jobname  JOB  ...
    //RMFPP    EXEC MICSSHRx
    //SYSIN    DD   DSN=sharedprefix.MICS.INCLLIB(RMFRPTS),
    //           DISP=SHR
    //CONTROL  DD *
    %LET TSPAN   = DETAIL;
    %LET CYCLES  = 01;
    %LET REPORTS = CACHEDTL ;
    %LET SELECT  = %STR(IF CUADDR='01AC';);
 or %LET SELECT  = %STR(IF CUDEVNUM=428;);
    %RMFPP;
    /*