Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Execute UAGRERUN in stand-alone mode. The job has 5 steps, not counting UAGRERUN. Run only the last 3.

Code Block
languagexml
//STEP00   EXEC PGM=UAGRERUN,PARM=’NOUAG,START=4’

...


//SYSPRINT DD SYSOUT=*



Execute UAGRERUN in stand-alone mode. Rerun steps STEP04 through STEP12 of the job with ID JOB29756 but skip step PRTRPT in the procedure executed by step STEP06. Run in preview mode only.

Code Block
languagexml
//STEP00   EXEC PGM=UAGRERUN,PARMDD=SYSIN

...


//UNVHIST  DD DSN=MY.SAMPLE.DSNAME,DISP=(MOD,CATLG),

...


//         UNIT=SYSALLDA,SPACE=(CYL,(2,2)),

...


//         DCB=(DSORG=PS,RECFM=VB,BLKSIZE=4104,LRECL=4100)

...


//SYSPRINT DD SYSOUT=*

...


//SYSIN    DD *

...


NOUAG,

...


RERUN=JOB29756,

...


PREVIEW,

...


START=STEP04,

...


END=STEP12,

...


SKIP=STEP06.PRTRPT

...


/*