What is the improvement to COND= in the latest version of MVS?
Answer Posted / 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 |
Post New Answer View All Answers
Explain how can the attributes of one sms dataset be copied to another dataset?
What is timing concept in mainframe?
Explain how can the submitting users racf authority be overridden in a job stream?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
What parameter directs the output of the job log dataset?
How does jcl act on a cobol code?
State the uses of syspring, sysin, sort fields, sum fields and dummy.
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
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
List the various advantages of using jcl language?
What is catelog procedure and how many catelog procedure to use in one job?
Explain the function of dd disp parameter?
How to submit a jcl from cics?