in jcl you are having JCLLIB and STEPLIB what happens
Answer Posted / kishore
STEPLIB will override for that step only not for entire job
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
How to submit a jcl from cics?
List the different components of jcl statement?
Is it possible to left uncode disp? If yes, how?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
How can a stopped job be started again?
What is multithreading in jcl?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
how to run batch program without jcl?
which utility is used to sort a file in jcl?
Explain how can an in-stream dataset be terminated?
How can the attributes of one sms dataset be copied to another dataset?
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
what are the statements that are not valid to be included in an include statement?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
What is the purpose of dd dummy statement?