Information Systems:EOM

From uniWIKI
Revision as of 10:00, 20 July 2016 by Norwinu (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
/* send email that daily overnight process is starting                    */ 
                                                                             
             CHGVAR     VAR(&SMSG) VALUE('Monthly processing is +            
                          starting')                                         
             CHGVAR     VAR(&LMSG) VALUE(&SMSG)                              
             CALL       PGM(OPMSGSEND) PARM(&SMSG &LMSG)                     
                                                                             
/*  MAKE SURE LIBRARY LIST IS CORRECT                                      */
                                                                             
             ADDLIBLE   LIB(DOCMGRCMD)                                       
             ADDLIBLE   LIB(UNIPHARMIT)                                      
                                                                              
/*  RUN ASW PROCESSING                                                     */
                                                                             
             CALL       PGM(EOMASW)                                          
                                                                             
/* send email that daily overnight process is ending                      */ 

             CHGVAR     VAR(&SMSG) VALUE('Monthly processing is + 
                          ending')                                
             CHGVAR     VAR(&LMSG) VALUE(&SMSG)                   
             CALL       PGM(OPMSGSEND) PARM(&SMSG &LMSG)