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 |
wht do u mean by notify parameter, how can u give acess to multiple users ?
what are the symbolic parameters? why do we use symbolic parameters ?
2 Answers IBM, TCS, UST, Xansa,
What is meant by S0C7 system abend code?
Can you execute a PROC from another PROC?
How does the jcl specify the job to os?
In how ways you can pass the data from Jcl to cobol ?
Suppose I have 5 dataset listed under a single DD name in a catlogued PROC. How can I override one of those 5 dataset (say 3rd dataset)?
wht do u mean by internal reader in jcl ? wht is the use of internal reader ?
Is acct parameter mandatory?
I have 15 flat files. each record in the files have the monthly salary for 12 months with the employee number. Now I want to concatenate the 15 files such that for the employee numbers that are common the o/p file should have only one record and the salaries should be concatenated to that record. How can we do it with JCL?
what does mvs stand for?
Explain about LMMLIST�list a library's members