In my job I have 6 steps. Step01,02,03...step06.
after executing step02 i want to skip step03 and want to
execute step04. and once step04 is done then I want to go
back and execute step03. once step03 is completed I want
execute step05, 06 and so on... can any one tell me how do
i do that???

Answers were Sorted based on User's Feedback



In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / anil sana

You can do that using IEBEDIT. Pls read JCL manual for more
details. I am citing an example below.

The member XXXXX in SYSUT1 contains the job and steps to be
executed.

//STEP0001 EXEC
PGM=IEBEDIT
//SYSPRINT DD
SYSOUT=*
//SYSOUT DD
SYSOUT=*
//SYSUT1 DD DSN=ANIL.SANA(XXXXX),DISP=SHR
//SYSUT2 DD SYSOUT=
(*,INTRDR)
//SYSIN DD
*
EDIT START=ANILPROC,TYPE=INCLUDE,STEPNAME=
(STEP2,STEP4,STEP3,STEP5......)
/*

Is This Answer Correct ?    12 Yes 1 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / pradeep

See below the exact code for your requirement: Here TEST001
contains your actual JCL to be executed

//Job Card
//STEP001 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXX.GENERAL.STUDY(TEST001),DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP01,STEP02,STEP04)
/*
//STEP002 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXX.GENERAL.STUDY(TEST001),DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP03,STEP05,STEP06)
/*

Is This Answer Correct ?    9 Yes 0 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / manohar (techmahindra)

In JCL one key word parametor is there that is DPRTY.It can
be done by using DPRTY(Value1,Value2) in the
job step,
hear Value1 allwawys 15
DPRTY=(15*15)=255
yOU CAN INCRESE Value2 value based on your requirment,You
can execute up to 255 steps in your JOB.


eg.,
//MANOHAR JOB 'TECHMAHINDRA'
//**
//STEP01 EXEC PGM=A ,DPRTY=(15*6)
//STEP02 EXEC PGM=A ,DPRTY=(15*5)
//STEP03 EXEC PGM=A ,DPRTY=(15*3)
//STEP04 EXEC PGM=A ,DPRTY=(15*4)
//STEP05 EXEC PGM=A ,DPRTY=(15*2)
//STEP06 EXEC PGM=A ,DPRTY=(15*1)
//**
//
By doing this according to there dispatching priority
each
step will be executed,
first it will execute step01,02,04,03,05,06

Is This Answer Correct ?    10 Yes 2 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / piyush mani

in this case we can either use
iebedit utility or
dprty
but using eibedit is better option bcoz it wont affect the main jcl

thans...

Is This Answer Correct ?    3 Yes 0 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / nidhi sharma

IT CAN BE DONE BY CONDITION STATEMENT

Is This Answer Correct ?    4 Yes 3 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / neha

we do use the code mentioned by the person who answered
first but we don't include step3 and step4 at one go.in
first step we include step 1 and 4 and then in the next
step we include step3 but the coding we use is the same.
for both steps....

Is This Answer Correct ?    1 Yes 0 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / nagaraj

It can be done by using DPRTY(dispatching priority) in the
job step,
eg., code dprty = (15*12) + 16 in step02
dprty = (15*07) + 06 in step03
dprty = (15*10) + 16 in step04
dprty = (15*05) + 04 in step05
dprty = (15*04) + 03 in step06.
by doing this according to there dispatching priority each
step will be executed,
first it will execute step01,02,04,03,05,06

Is This Answer Correct ?    2 Yes 2 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / abc

we can make function of every step, and call them accordingly

Is This Answer Correct ?    0 Yes 0 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / aaaaa

NO IT CANN'T BE DONE WITH CONDITION BUT I THINK FROM WHAT
ANIL HAS WRITTEN MIGHT WORK.......

CORRECT ME IF I AM WRONG!!!!!!!!!!

Is This Answer Correct ?    0 Yes 2 No

In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and w..

Answer / shailendra

chang the step according to requirment

//step1
//step2
//step4
//step3
//step5
....
..
.....

Is This Answer Correct ?    4 Yes 8 No

Post New Answer

More JCL Interview Questions

I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter

8 Answers  


how do u define a file in cobol and jcl ?

2 Answers   TCS,


How to execute a set of JCL statements from a COBOL program ?

6 Answers  


In jcl i have 255 steps. In 255 step i declared proc. In proc i have 20 steps this job is executable or not? why?

4 Answers  


diff bw vsam and normal flat file?

2 Answers   CGI,






Suppose we have 5 steps in a job.No step should be executed After submitting every step in a job

2 Answers   AVB, IBM,


what will be the error code if duplicate key of VSAM file is found?

1 Answers   HSBC, Kings,


i want to restart frm step 2, previously i coded cond parameter on step2 wht happens at tht time ?

4 Answers   Infosys,


What is maximum length of block size?

5 Answers   Cap Gemini, Kanbay, TCS,


What is DATACOM db?

2 Answers  


I have three files for one step i need to override the third file how to do that in jcl?

1 Answers   UST,


Explain about LMINIT - generate a data ID for a data set

1 Answers  


Categories