OUTPUT parameter: Difference between revisions
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
==Description== | ==Description== | ||
<p>The name, from a FILEDEF or a JCL file assignment, of an output file</p> | <p>The name, from a FILEDEF or a JCL file assignment, of an output file</p> | ||
<p>OUTPUT is a character string parameter. It is specified | <p>OUTPUT is a character string parameter. It is specified alongside the INPUT parameter to support a BSAM device. </p> | ||
<p>OUTPUT and INPUT must match the names from FILEDEF or JCL file assignments:</p> | <p>OUTPUT and INPUT must match the names from FILEDEF or JCL file assignments:</p> | ||
<p>The following z/OS example shows DD statements and user parameter lines for IODEV 3: </p> | <p>The following z/OS example shows DD statements and user parameter lines for IODEV 3: </p> |
Revision as of 15:55, 13 March 2017
Output device name
Summary
- Default value
- None
- Parameter type
- User
- Where set
- On user's parameter line
- Related products
- All
- Introduced
- Model 204 V2.1 or earlier
Description
The name, from a FILEDEF or a JCL file assignment, of an output file
OUTPUT is a character string parameter. It is specified alongside the INPUT parameter to support a BSAM device.
OUTPUT and INPUT must match the names from FILEDEF or JCL file assignments:
The following z/OS example shows DD statements and user parameter lines for IODEV 3:
//IO301I DD DSN=M204.IODEV3.INPUT,DISP=SHR //IO301O DD SYSOUT=A IODEV=3,INPUT=IO301I,OUTPUT=IO3010
The following z/VSE example shows ASSGN and DLBL statements and a user parameter line for a BSAM device:
// ASSGN SYS010,02E // DLBL BSAMIN,'M204.BSAM.INPUT' // EXTENT ... . . . IODEV=3,INPUT=BSAMIN,OUTPUT=SYS010,POLLNO=1 - NOTERM=1