What is the improvement to COND= in the latest version of MVS?
Answers were Sorted based on User's Feedback
Answer / krithiga hari
COND statement can be replaced with IF END IF statement.
In COND, if the condition is true then the step will be
bypassed.
In IF END IF, if the condition is true then the step will
get executed.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / vish
True, COND parameter are a bit complex to write and
Understand. So they are promoting the use of
IF/THEN/ELSE/ENDIF instead of using COND parameters.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guest
MVS now allows for an IF bracketed by an END IF around any
job step to replace the COND= syntax. Again, if the IF
statement is true, the step is bypassed.
Is This Answer Correct ? | 0 Yes | 2 No |
What is timing concept in mainframe?
i have five step in jcl.my forth step is gdg.gdg was abend.when will job complete,hoe to handle you
can any one plzzzzzz tell the jcl code for creating ps using idcams
I need exexution process for JCL programs
What does the one advantange of using IEBUPDTE?????
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 r different types of sort fields in jcl ?
what is the cond=even only
which are the parameters mandatory in job card ?
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,
Explain about LMINIT - generate a data ID for a data set
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