how to code instream data in procedure?
Answers were Sorted based on User's Feedback
Answer / sruthi
By using control cards we can pass instream data to procs
| Is This Answer Correct ? | 2 Yes | 0 No |
We can't write
//SYSIN DD *
but i think we can code
//SYSIN DD DSN=SYSIN.PS,DISP=SHR
where SYSIN.PS is a 80 byte file containing SYSIN statements.
Not sure about it.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / mahesh
defined in the same job and also exicuted in the same job
starting with a proc operand
end with a pend statement
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the function of the steplib dd statement?
Can we write same stepname for one or more steps in on job ?
What will happen when we try to pass data from JCL to COBOL using PARM parameter without declaring the length field in Linkage Section?
Explain about REXX
which statement is used to end the in-stream procedure in a jcl?
what will be the error code if duplicate key of VSAM file is found?
Explain how can values be passed from the job stream to an executable program?
Which storage devices are grouped under DASD and SYSDA ?
i have 6 steps in my jcl program after going to 5th step i want to execute 3rd step.....how can i do it....by using(RESTART) can i do it or not?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
what is the difference between perform varying and perform
In a JCL if previous steps return code is greater than 0 or 4 then the next step will not execute. But the job will be successfull with the maximum return code. How can we reset this maximum return code to '0' regardless of return codes of any steps?