what happens when time=0 is given in jcl code.
what happens when blksize=0 is given in jcl code.
what is symbolic and overriding parameters and a example
program.
Answer Posted / mohan.chepuri
time=0 the job not submitted
blksize=0 then block size is empty it to jcl error
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What do you understand by jcl?
Explain the jcl exec statement?
What do you understand by the terms: joblib and steplib?
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?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
Does jcl support automatic restart?
What is the purpose of dd?
define cond parameter in jcl?
Explain the function of a dd statement?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
Name what parameter directs the output of the job log dataset?
What is the function of //cntl statement?
what are the types of abends that occur on job failure? And explain the possible causes of these
I need exexution process for JCL programs
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