OUTPUT parameter: Difference between revisions
Jump to navigation
Jump to search
(Automatically generated page update) |
|||
Line 11: | Line 11: | ||
<dd>All | <dd>All | ||
<dt>Introduced | <dt>Introduced | ||
<dd><var class="product">Model 204 | <dd><var class="product">Model 204 V2.1</var> or earlier | ||
</dl> | </dl> | ||
==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> |
Revision as of 15:53, 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 with 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