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 |
What it does If we specify TYPRUN=P & it is not substituted by SCAN 0r HOLD in VALUE SET.
How to find the length of variable length copybook using fileaid ??
Is it possible to left uncode disp?
what are the various stages of job processing?
How do you overcome this limitation ?
What is the DD statement for a output file?
in catalog procedure i have step1 dd dsn=filea dd dsn=fileb dd dsn=filec ur concatenaning all the files. but i need to override fileb with file 2 ? can anyone give the ans pls for ths
Could anyone please suggest me what is the maximum length of data that can be pass as input in //sysin dd * This was asked in interview. TIA
What is catelog procedure and how many catelog procedure to use in one job?
Give the syntax of job specifying jcl statement.
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
Explain about LMINIT - generate a data ID for a data set