IF we are calling a PROC from Jcl...This Proc have 3 steps
in it and we want to execute only the second step using the
JCL, How to do it??
Please give the answer ASAP:)
Answers were Sorted based on User's Feedback
Answer / biswajit
Sorry there is little modification on JOB CARD to my
earlier answer.
In Job card RESTART = Proc stepname.stepname ie
STEP2.Stepname of job that invokes the proc This will result
to start at STEP2 of proc.
In Exec statement of the job that invoking the proc u can
code COND.STEP3 = (0,LE),The result of this is the STEP3
of proc will have COND=(0,LE).Whcih is allways true so this
step will be always bypassed.As a result of both only STEP2
of proc will be excuted.
Is This Answer Correct ? | 13 Yes | 2 No |
Answer / chandra babu
In job card : RESTART=Step name of the PROC.Step02,
COND=(0,LE, Step name of the PROC .Step03)
Is it correct?
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / biswajit jena
In Job card RESTART = Procname.STEP2.This will result the
to start at STEP2 proc.And
In Exec statement of the job that invoking the proc u can
code COND.STEP3 = (0,LE),The result of this is the STEP3
of proc will have COND=(0,LE).Whcih is allways true so this
step will be always bypassed.As a result of both only STEP2
of proc will be excuted.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / muttaiah
Hi,
I have executed the jcl as per answer#4, it worked f9.
I have a question here, if there are three steps we are
giving cond parm as cond.step3=(0,le)
If there are 5 steps in proc, how to specify the cond parm
in exec step which is calling that proc.
Please suggest me how to accomplish this.
Immediately reply would be greatful.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / gani.....
in job card give restart=jobstename.procstepname
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / rahul singh
On Job card : Restart=jobstep(step that calls the proc).step2
On Jobstep(step that calls the proc): COND=(0,LE)
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / ch.mohan
using cond=even
even use to only perticular step was executed indipendently
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / sowdamini
we can override step1 and 3 by dd dummy statements.
Is This Answer Correct ? | 1 Yes | 4 No |
I have 10 steps, I want to run STEP1 TO STEP4 then I should not run STEP5 and STEP6. Aganin I want to execute from STEP7 to STEP10. ONLY using CONDITION CODES how can we execute this process? 1. Where we can set cond codes for STEP5 and STEP6? 2. How can we execute remaining steps from STEP7 to STEP10?
i have a file which contains duplicates ? my requirement is to eliminate duplicates and these elminated duplicates should be moved to another file can any code this using sort ?
How can I write the joblog in the spool on normal end of a job step and direct the joblog to a dataset only if the step abends?
What do you know about jcl?
is it possible to submitt more than one job in job card in jcl? and if yes than is it necessary to have the jobs same name?
Explain about LMOPEN -
Do we need to code DCB parameters when using DISP position as MOD?
how to allocate a dynamic dataset in jcl ?
My JCL have five steps & I created new versions of GDG in first step through fourth step & fifth step I was refered Step one GDG version. My JCL got abend at 4th step and how I can restart my JCL Please let me know the answers. //STEP1 EXEC GDG1(+1) DISP=(NEW) //STEP2 EXEC GDG1(+2) DISP=(NEW) //STEP3 EXEC GDG1(+3) DISP=(NEW) //STEP4 EXEC GDG1(+4) DISP=(NEW) //STEP5 EXEC GDG1(+1) DISP=(OLD)
11 Answers HCL, IBM, L&T, TCS,
how to convert fb to vb in jcl ?
What are some jcl statements that are not allowed in procedures?
Explain about Internal Sort