Suppose there are 10 steps in a PROC, I want to execute
only step5. How do you give the condition in the JCL that
calls this PROC?
Answers were Sorted based on User's Feedback
Answer / siri
using restart parameter.....
//jobname job ,,,restart=proc.step5.....
and next given cond=(00,le) in step6 to step10..
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / sk
Use IEBEDIT
//IEBEDITJ JOB ACCT,'',CLASS=P,MSGCLASS=T,MSGLEVEL=
(1,1),NOTIFY=&SYSUID
//STEP0001 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=xxxxx.yyyyy.zzzzz,DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP5)
/*
//
| Is This Answer Correct ? | 8 Yes | 6 No |
Answer / sk
Use IEBEDIT utility, It can be solved easly using this
utility.
| Is This Answer Correct ? | 3 Yes | 5 No |
how to eliminate the duplicates in sorting
What are the common jcl syntax errors you get? This is not abends?
In sms datasets, what is the function of the dd mgmtclas keyword?
How to view the hexa decimal value thru file aid if copy book is not present for that particular data
which utility is used to run a cobol-db2 program?
wht r s722,s822,s122 and s222 abends pls reply fast
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
Explain about ISPFTTRC
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The DISP in the JCL is SHR and the program opens the file in EXTEND mode. What happens ?
I have a JCL with 100 steps. I want run the Alternate steps in the JCL ( Like 2 ,4,6,8 etc.. ). How can I acheive this scenario? If It is by Cond Parameter can you provide the Condition code for that?
5 Answers Polaris, Tech Mahindra, UST, Wipro,
What is a GDG? Why do we go for a GDG ? utility used to create GDG?
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?