in a series of 10 steps, i need to run only 1,3,5,7 & 9th
steps only. how do u code?
Answers were Sorted based on User's Feedback
Answer / jagan mohan
by using iebedit utility and specifying required steps in controlcrds we can execute it.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / paray2x
You need to know what return codes Steps 1,3,5,7 and 9 will
give if they execute successfully. Based on that, you can
code COND parameter in STEPS 2,4,6,8 and 10 to bypass them.
This will help if you do not have IEBEDIT.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / swathi
//Jobname
//step1 exec pgm=iebedit
//s1
//s2
//s3
.
.
.
//s10
//sysin dd*
start jobname type = include(s1,s3,s5,s7,s9)
/*
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vinay sonar
//STEP1 EXEC PGM=IEBEDIT
//SYSIN DD*
EDIT TYPE=INCLUDE,STEPNAME=(STEP2,STEP3,STEP5,STEP7,STEP9)
/*
| Is This Answer Correct ? | 1 Yes | 0 No |
do we need to mention the location of catalogued procedure for each it's call in a single job?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
I have an job having three job steps.Suppose i want to call a pgm in step2 and aproc in step3.How to write the code?
What does SYSIN * indicate?
List some valid operation codes in JCL
How to compare 2 files using File-Aid?
Hi, can we call catalog( say myproc } proc n times in jcl if so how please explain Thanks in advance
I have two input SORTIN files and We need to create one SORTOUT file which contains data of both input files. What is the SortCard for this?. Suppose the length of the both files are different, then How we do it? Please reply ASAP
can u execute a proc from another proc?
Can we change a FB file to VB file in JCL? Please help
List the various advantages of using jcl language?
If Name is NOT given for a JOB statement, then will it give error or installation will supply it for the JOB ?