Previous Topic: 3.1.1.2 Report Customizing

Next Topic: 3.1.2 Tabular Report Formats

3.1.1.3 Integrating Reports into the DAILY Job

 
CA MICS Network Analyzer tabular reports can be incorporated
into the CA MICS DAILY update job stream in the DAY500 step.
Listed below are the implementation guidelines.  You should
follow all the steps in the order given.
 
1 - In prefix.MICS.USER.SOURCE(DYUSER), code the following
    SAS statement.
 
    %INCLUDE INCLLIB(SNTRPTS);
 
2 - Using IEBUPDTE, add the INPUTRPT DD statement (as
    described in Section 3.1.1) to
    sharedprefix.MICS.PROTOLIB(DYUSR500) after the
    existing SYSIN DD statement.  Since you may not wish
    to make this change for all units in the complex, you
    can include the generator control language below in
    the IEBUPDTE to check for the prefix of the unit
    database being processed.
 
    :IF &PREFIX NE &STR(uprefix) THEN GOTO c
    //INPUTRPT DD DSN=prefix.MICS.PARMS(SNTRPTS),DISP=SHR
    :c:
 
    In the above example, 'uprefix' is your unit database
    prefix and 'c' is a label which you define.  For more
    information on the generator control language, refer to
    Section 2.3.3.3.3 of the CA MICS PIOM Guide.
 
    Also, the prefix.MICS.PARMS(SNTRPTS) member would
    contain the report selection parameters for the
    specific reports you want to produce every day.  You
    should code these report selection parameters
    according to the format described in Section 3.1.1.1
    of this guide.
 
3 - In prefix.MICS.PARMS(JCLGENU), code the word DAILY,
    and then submit prefix.MICS.CNTL(JCLGENU).  This step
    regenerates your DAILY operational job stream.
 
    Make changes to the DAILY or any other CA MICS job in
    sharedprefix.MICS.PROTOLIB so that they will not be
    overridden in future regenerations.