Answer Posted / mahesh
defined in the same job and also exicuted in the same job
starting with a proc operand
end with a pend statement
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how can a jobs execution priority be modified?
Name the statement which can be used to send data to another mvs jes3 node?
List the different jcl statements that are not permitted in the procedures?
how would you create a temporary dataset? And where will you use them?
Does jcl support automatic restart?
How to submit jcl through a cobol program?
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
How can the attributes of one sms dataset be copied to another dataset?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
Explain the function of dd disp parameter?
What is the motivation behind coding class parameter in job statement?
what is DD statement is used in JCL?
What parameter of the job statement is used to limit the cpu time consumed by the job?
How do you access an uncatalogued dataset in a jcl?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?