When you
schedule a flow, Schedule Manager creates the following files:
-
a REXX program called
RunFlow_
yyymmddhhmmsssss.rex
, which submits each batch job
to run on the requested schedule.
-
a file called
jobname.status
, which contains information about the status of the job.
-
the following files, each of which
invokes the REXX program to log the job status:
-
logstart
_
jobname, which is executed as the first step of each job
-
logend
_
jobname, which is executed as the last step of the job if all previous steps
have a return code of 0
-
logfail
_
jobname, which is executed as the last step of the job if any of the previous
steps has a return code other than 0
-
flowname.cmd
, which contains the statements
that execute the program for the flow. This file is passed to the
at
command to be executed when the time event trigger
occurs.
-
flowname.log
, which contains the log information
for the flow.
-
flowname.status
, which contains the current
status of the flow.
The files are written to a subdirectory called
username/
flowdefname in the Control Directory that was specified in the operating system
scheduling server definition, where
username is the identity that scheduled the flow.