i have step1,step2,step3 from where can i start coding cond parameter ?
Answer Posted / arunudhay
You can start either from step 1 or 2 or 3,it doesn't matter
but depending on your COND stmt the steps will be executed.
Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
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
What does a disposition of (new,catlg,keep) for a dsn mean?
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) ?
is there any way to execute more than one proc in the same exec statement at the same time..?
What are the difference between jcl and jes?
In job processing, what happens in conversion stage?
What is multithreading in jcl?
Mention the types of job control statements?
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.
What is the significance of addrspc parameter in the exec statement?
List in order the hierarchical levels of jcl?
Describe the various parameters utilized in the creation of a gdg?
What is the motivation behind coding class parameter in job statement?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
Explain how can the submitting users racf authority be overridden in a job stream?