what is the COND=EVEN ? Can anyone give me an example to
explain the usage.
Answer Posted / suputhru
COND=EVEN,this step will execute when previous step executes abnormally or normally.
COND=ONLY, this step will execute when only(must)previous steps executes abnormally.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
Which dd parameters are required?
What are the rules employed while naming the steps in a job?
In sms datasets, what is the function of the dd mgmtclas keyword?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
Why include statement is used in a jcl?
which utility is used a dummy utility?
In sms datasets, what is the function of the dd avgrec keyword?
what are the types of abends that occur on job failure? And explain the possible causes of these
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
in ways data can be passed to a COBOL program from JCL?
What are the difference between jcl and jes?