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 |
What are the parameter we cannot use in procedure?
Can we have a JOBSTEP without any EXEC ?
Explain about LMMFIND - find a library member
Explain about LMQUERY�give a dialog information about a data set
Max generations in GDG??
Wrete a JCL to compare two files and mached records move to onc file & un mached rows wants to another file?
13 Answers CGI, DSRC, IBM,
My JOB contains three steps. //STEP1 EXEC PGM=ABC //STEP2 EXEC PGM=DEF //STEP3 EXEC PGM=GHI My Question is 1) I want to execute second step only. How will do. 2) Soppose U consider above three steps are in PROC steps and I want execute the PROC second step only? How to execute the second step only. During exection time its creating any ABEND? Please let me know..........
can a job be submitted through jcl only? is there another way to submit a job?
how you will define a temporary dataset in jcl?
What is the error in the following JCL statements : I) //step#three exec pgm=hkbc762 ii) //step#3 exec pgm = hkbc762 iii) //step#3 exec pgr = hkbc672
In sms datasets, what is the function of the dd mgmtclas keyword?
I have Job A and Job B. I want to trigger Job B from Job A. Please advise.