Difference between revisions of "Information Systems:EOD"
Jump to navigation
Jump to search
(Created page with " →Do temporary backup. This is to restore files if update program: →bombs. It can be used to do a quick restore if say, a user deletes: /* something they sh...") |
|||
Line 3: | Line 3: | ||
/* something they shouldn't. And it is used to rebuild test libraries. */ |
/* something they shouldn't. And it is used to rebuild test libraries. */ |
||
− | CALL PGM([[ |
+ | CALL PGM([[EODBUTEMP]]) |
/* Set up production environment for company VA. */ |
/* Set up production environment for company VA. */ |
||
Line 11: | Line 11: | ||
/* Run End of Day updates. */ |
/* Run End of Day updates. */ |
||
− | CALL PGM([[ |
+ | CALL PGM([[EODUPD]]) |
/* Run End of Day reports. */ |
/* Run End of Day reports. */ |
||
− | CALL PGM([[ |
+ | CALL PGM([[EODRPT]]) |
/* Run End of Day housekeeping. */ |
/* Run End of Day housekeeping. */ |
||
− | CALL PGM([[ |
+ | CALL PGM([[EODCLR]]) |
/* Clear consolidated item master file (XXITEMP). This is rebuilt in */ |
/* Clear consolidated item master file (XXITEMP). This is rebuilt in */ |
Revision as of 17:10, 4 February 2016
/* Do temporary backup. This is to restore files if update program */ /* bombs. It can be used to do a quick restore if say, a user deletes */ /* something they shouldn't. And it is used to rebuild test libraries. */ CALL PGM(EODBUTEMP) /* Set up production environment for company VA. */ CHGASWCOM COMPANY(VA) /* Run End of Day updates. */ CALL PGM(EODUPD) /* Run End of Day reports. */ CALL PGM(EODRPT) /* Run End of Day housekeeping. */ CALL PGM(EODCLR) /* Clear consolidated item master file (XXITEMP). This is rebuilt in */ /* EODREBLD, but as it is used by so many jobs, it can be cleared only */ /* in the Application Restricted State. */ RCLRSC CLRPFM FILE(XXITEMP) /* Rebuild statistics files, and update summary files. As this can run */ /* while users are on the system, submit job to QBATCH so that it will */ /* run after the system is brought back up again. This gets it out of */ /* the restricted state sooner. */ SBMJOB CMD(CALL PGM(EODREBLD)) JOBQ(QS36EVOKE)