how are instream data terminated?
Answers were Sorted based on User's Feedback
Answer / balmukund
Instream data termination in JCL can we done by /* after
SYSIN DD *. For example.
PGM1 EXEC PGM=PGM1
---
---
SYSIN DD *
istream data
/* termination of instream data.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / karthik
//Sysin DD *
Instream data
.
.
/*(end of instream data)
OR we can use DLM parameters
//Sysin DD data, dlm='xx'
Instream Data
/*
.
XX
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sanjayreddyguna
//sysin dd *
fh
h
hj
gh
/*------>this is delimiter for instrem data
OR
//sysin dd data,dlm=A
jhj
hl
kl
A----------->this is allso delimiter for instream data
| Is This Answer Correct ? | 0 Yes | 0 No |
How can values be passed from the job stream to an executable program?
Which COND paramter will u use to execute the step only if the previous step does not execute
In a proc i will concatinate 4 dd statements.i want to overide 3 dd statement through jcl how?
in production region 100 steps are running,but i need to run only step5 without changing code how can i do it?
with out sorting how to copy records from one file to another file using jcl.Mean I have one input file in which the record are like 1,6,5,4,2,3(for example) and i want to copy to output file from top to bottom(without sorting) like 3,2,4,5,6,1.so I want the JCL for this.cna any one can answers?
What is a PROC? What is the difference between an instream and a catalogued PROC?
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
If i am going to change some variable in a copybook( size or variable type) ,what are the changes that need to be done in the corresponding JCL.
What is timing concept in mainframe?
how you can access an uncataloged dataset in a JCL?
Explain about LMPUT-
Explain how can the disposition of sysout datasets be set for an entire jobstream?