Can there be 2 job statements in a JCL?
If yes what is the purpose of doing tha?
Answers were Sorted based on User's Feedback
Answer / sroul4
yes we can, but it treats both the job differently,
The file created in one job step can not be used in the
other job steps.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mr.perfect
we can use two job statement in single JCL, i think it is
not necessary to use two job statements in single JCL,
because a single job can execute compile and RUN jcl with
single JOB statements.
| Is This Answer Correct ? | 0 Yes | 0 No |
how many max steps can we use in a job? pls answer to my question
what type of version is we r using now real time in all modules(cobol, jcl, cics, db2, vsam)?
Can we find specific member without knowing the name of PDS or can we search a member to which PDS it belongs to? if so how?
What does S0C4 error mean?
CAN ANYONE TELL ME WHAT IS "JOB-CARD"
How many positional parameters are there in job statement?
how can we pass parameters from JCL to cobol subprogram...my requirement is i should not get data from mainprogram but i need it from JCL directly
Max generations in GDG??
What is the difference between static call & Dynamic call ?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
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