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 happens if both JOBLIB & STEPLIB is specified ?
How many positional parameters are there in job statement?
how to resolve the soc4 error?
Suppose your program is reading a Sequential Vsam file. The file contains 10 records. How will you code the JCL to read only 2nd, 5th, 7th,and 10th record?
Brief description of inline procedure of jcl.
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
Can we create VSAM file by using IEBGENER?
Are there any set of rules for the names of the steps used in a job?
I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?
ihave ten flatfile in that iwant to concatinate all the files except file 5,6 into output file by uing jcl? how to do this? give me detail yntax for tis?
Explain how can a stopped job be started again?
What is the motivation behind coding class parameter in job statement?