What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Answer Posted / venkat
yes,no,yes,
| Is This Answer Correct ? | 1 Yes | 31 No |
Post New Answer View All Answers
List in order the hierarchical levels of jcl?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
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 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.
When space is allocated for an output dataset, what units can be used?
Explain the hierarchy levels in jcl?
What is job control language?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
What are hierarchy levels in jcl?
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
Can I share my data with other jobs? How?
whats the diff bw the evaluate also and and?
Where can program checkpoints be stored for use in a restart?