How to execute a four steps in a reverse order ?

Showing Answers 1 - 28 of 28 Answers

swamy

  • Aug 18th, 2011
 

i think we can do tat by using dprty parameter

  Was this answer useful?  Yes

Phani Nagendra

  • Aug 19th, 2011
 


You can do it with IEBEDIT utility only.

I would believe that DPRTY in the STEP will not serve this purpose. DPRTY coded on the step level is just ignored. DPRTY is a very old JCL keyword that was basically ignored anyway depending on the settings in the Installation Control Specification (ICS) in use on the system. I believe DPRTY has been ignored since MVS/ESA SP V5.

You can try in this way......

//STEP002 EXEC PGM=IEBEDIT
//SYSUT1 DD DSN=T.PHANI.JCL(TEST01),DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP03,STEP02,STEP01)
/*

In the above, T.PHANI.JCL is a PDS and member "TEST01" is the JCL from which I want to execute STEP03,STEP02 and STEP01 in my own order.

funfull9

  • Jan 25th, 2012
 

By using eibedit utility we can do it.

  Was this answer useful?  Yes

chandrakant

  • Dec 26th, 2014
 

IEBEDIT can be used to submit other JOB using INTRDR, Also we can select STEPS of the JOB but it would not change ORIGINAL sequence in the job.
HENCE IT WOULD NOT RUN THE JOB IN REVERSE.
Sorry to say but dont misguide.

  Was this answer useful?  Yes

vasudeva

  • Oct 16th, 2015
 

By Using IEDEDIT we can do the reverse execution..

  Was this answer useful?  Yes

Akash

  • Nov 18th, 2016
 

You can use the keyword DPRTY to set the priority of the particular step.
DPRTY = (value1)*16+(value2)

  Was this answer useful?  Yes

Nagaraju

  • May 12th, 2017
 

IEBEDIT

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions