why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
Differentiate between addressing mode and run mode.
How to submit jcl through a cobol program?
Explain how can return codes be tested before execution of a job step?
What are the jcl procedures?
What are steplib and joblib?
How does the jcl specify the job to os?
How would you understand error(execution phase)?
Explain the function of job statement in jcl?
Which statement is used to identify the private libraries in job?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
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.