SNT Integrating Reports into the DAILY Job
MICS Network Analyzer
tabular reports can be integrated into the MICS DAILY
update job stream in the DAY500 step.micsrm140
MICS Network Analyzer
tabular reports can be integrated into the MICS DAILY
update job stream in the DAY500 step.Follow these steps:
- In prefix.MICS.USER.SOURCE(DYUSER), code the following SAS statement.%INCLUDE INCLLIB(SNTRPTS);
- Using IEBUPDTE, add the INPUTRPT DD statement (as described in the Producing Tabular Report section) to sharedprefix.MICS.PROTOLIB(DYUSR500) after the existing SYSIN DD statement. Since you may not need 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 about the generator control language, see Generation Control Language.Also, the prefix.MICS.PARMS(SNTRPTS) member would contain the report selection parameters for the specific reports you want to produce every day. Code these report selection parameters according to the format described in Producing Tabular Report.
- 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 otherMICSjob in sharedprefix.MICS.PROTOLIB so that they will not be overridden in future regenerations.