How to point my proc to production dataset always though i
keep jcllib order=development.dataset? Is it possible?
Answer Posted / abhijit18in2002
If your Production and Test region shares same Image then
it is possible to point production region dataset from Dev
Sample JCL
//REPRO EXEC
PGM=IDCAMS
//SYSOUT DD
SYSOUT=*
//SYSPRINT DD
SYSOUT=*
//IN DD
DSN=ABCD.PROD.INPFILE,DISP=SHR,
//
UNIT=VCAP,VOL=SER=xxxxxx
//OUT DD
DSN=EFGH.DEV.RAF17744,DISO=SHR
//SYSIN DD
*
REPRO INFILE(IN) OUTFILE(OUT) COPY
(1000)
//*
This statement is most imp
UNIT=VCAP,VOL=SER=xxxxxx
Serial no should refer to Production.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why block size is multiple of lrecl in jcl?
What is the function of dd disp parameter?
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) ?
What is timing concept in mainframe?
what is JCL?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
Name a few IBM utility programs, and explain its function.
A dd statement consists of 4 fields. Name them?
How can unused space allocation be returned to the system when a dataset is closed?
what is use of dsn parameter in dd statement?
what is the JCL statement consists of?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
Is it possible to code instream data in a PROC?
How can return codes be tested before execution of a job step?
Where & How Do You Code Identifier In Jcl?