How to send data from cobol program to jcl?
Answers were Sorted based on User's Feedback
Answer / gaurav
We can set the RETURN-CODE in COBOL which is passed to JCL
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / challa srinivas
We can send output as a (PDS member) with DISP=SHR. The DISP applies to the PDS and not to specific member.
| Is This Answer Correct ? | 0 Yes | 2 No |
What happens if both JOBLIB & STEPLIB is specified ?
Can you code instream data in a PROC ?
how many max steps can we use in a job? pls answer to my question
What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Max. No of DD statements in a job ?
How to execute a set of JCL statements from a COBOL program ?
What is a JCL Command statement ?
When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?
Passing a variable parm from JCL to a cobol/db2 program
How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
My JCL has 4 steps that execute PROC’s P1, P2, P3 and P4 as shown below //P1 EXEC PROC=P1 //P2 EXEC PROC=P2 //P3 EXEC PROC=P3 //P4 EXEC PROC=P4 There are four steps S1, S2, S3 and S4 in each PROC’s (i.e. P1, P2, P3 and P4) I want to execute only step S2 of PROC P2 and no other steps or PROC’s. How do you achieve this?