Can you code instream data in a PROC ?
Answers were Sorted based on User's Feedback
Answer / rd
We can't use instream in PROC ,we cau use over ridden
paramater to pass value in Proc
Is This Answer Correct ? | 14 Yes | 2 No |
Answer / rakesh
We can pass those instream data in a PS file and in the
SYSIN DD DSN we will specify the file name
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / ankur
I am prety much sure that Instream data can not be passed
thru a cataloged PROC.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / jerin jose
SYSIN DD * CANNOT BE USED SO WE CANNOT CODE IT
Is This Answer Correct ? | 6 Yes | 3 No |
Answer / pradeep
Jerin Jose,
The Question does not say that the instream data is passed
thru an Instream Proc. If only Instream proc is used, SYSIN
is not possible and the data can only be passed thru' a
PARM in the step. But, if Cataloged Prod is used, then the
SYSIN can be very much used to pass a Instream data.
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / guest
//SYSIN DD *,SYMBOLS=(JCLONLY)
Will do the trick.
Is This Answer Correct ? | 1 Yes | 0 No |
How we can code in a jcl to execute a job in a particular time and date without using any job shudular?. (Eg) i want to execute a particular job at 8 am on 01/01/2010.
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
What is the difference between sb37,se37,sd37 each?
Which dd parameters are required?
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) ?
Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?
What is DSNDB06 ?
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?
Give the syntax of job specifying jcl statement.
Whats error code s222?
Explain about CBL/PROCESS statement syntax
I have a job which is a long-running one. Processes millions of records. Due to some run-time problem (not a problem due to the job/data) the job abends.What needs to be done to make the job complete successfully.