there are 10 steps in jcl how to execute the steps from
step2 to step8 only
Answers were Sorted based on User's Feedback
Answer / sai
Hi,
CODE THE CONDITION PARAMETER COND=
(0,LE) IN THE STEPS THAT WE DONT WANT TO EXECUTE
Regards
Sai
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / chowdary
give restart from step 2 and give end statement after 8th
step
it might be possible by using cond parameter
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / suputhru
AAA BHAI LOOG, First understand the requirement.
1.we can't code COND=(0,LE) for first step.
here we can use COND=only,
2.for not execution of 9 and 10 use COND=(0,LE)
else direct answer: IEBEDIT utility.
Incude 2 to 8 stepnames.
ex:
//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=(STEP001,STEP002,...STEP008)
/*
Similarly, we can use TYPE=EXCLUDE to exclude the steps from exec.
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / vinay sonar
You can use cond parameter but it will be very tedious.
So you can use IEBEDIT
Syntax is
//SYSIN DD*
EDIT TYPE=INCLUDE,STEPNAME=
(STEP2,STEP3,STEP4,STEP5,STEP6,STEP7,STEP8)
/*
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / guest
He wants step 1 and 10 should be bypassed and not 9 and 10.
We can use restart parameter
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / anonymous
If it is confirm that step 2 to step 8 will execute normally
then what we can do is write COND=(0,EQ) for step 9 &
step10.So these last steps will be byepassed.
| Is This Answer Correct ? | 4 Yes | 7 No |
can we modify the code in copy book? if it possible how to submit ofter the modification.
Is Default for MSGCLASS = (1,1) ?
I have a job (4 steps) with time parameter coded in job & exec, say time=10 in job & time =3,2,2,4 in each steps. Will the job executes successfully?
How to DEBUG a JCL?
Can we browse or edit the GDG dataset if it is a tape entry?
How to check empty file in jcl?
What is a GDG
Is there a limit of 3273 DD statements for a JCL or for every EXEC step in a JCL?
I have a PDS and want to omit few rows of all members of a PDS. How to do it?
Explain the hierarchy levels in jcl?
Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?
i have 10steps and i want run step3 and based on step3 i want execute step7,8,9,10?in jcl