USE command: To a sequential data set: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
m (add "See also" section)
 
(4 intermediate revisions by 2 users not shown)
Line 6: Line 6:
<dd>Directs <var class="product">Model&nbsp;204</var> output to a specified sequential data set rather than to the normal output device
<dd>Directs <var class="product">Model&nbsp;204</var> output to a specified sequential data set rather than to the normal output device
</dl>
</dl>
==Syntax==
==Syntax==
<p class="syntax"><b>U</b>SE <i>outputname</i>
<p class="syntax"><b>U</b>SE <span class="term">outputname</span>
</p>
</p>
   
   
<b>Where:</b>
Where <var class="term">outputname</var> is in the form <code>OUT<i>xxxxx</i></code>, referring to the run's data definition statement in the z/OS or z/VSE JCL, or to the FILEDEF statement in the CMS EXEC. Output name can also be the name of a DEFINE DATASET definition.
outputname is in the form OUTxxxxx, referring to the run's data definition statement in the z/OS or z/VSE JCL or the FILEDEF statement in the CMS EXEC. Output name can also be the name of a DEFINE DATASET definition.
 
==Example==
==Example==
<p class="code">USE OUTPRINT
<p class="code">USE OUTPRINT
USE OUT1  
USE OUT1  
</p>
</p>
==Usage notes==
==Usage notes==
<p>When output from <var class="product">Model&nbsp;204</var>, such as a User Language request or a DISPLAY command, is being sent to a data set, the USE command must be specified before any commands that produce output to that data set are executed.</p>
<p>
<p>If you are using an external security interface, authorization to open sequential data sets is validated during execution of the command. For more information, refer to the <var>Model&nbsp;204 Security Interfaces Manual</var>. </p>
When output from <var class="product">Model&nbsp;204</var>, such as a [[SOUL]] request or a <var>DISPLAY</var> command, is being sent to a data set, the <var>USE</var> command must be specified before any commands that produce output to that data set are executed.</p>
[[Category: General user commands]]
<p>
If you are using an external security interface, authorization to open sequential data sets is validated during execution of the command. For more information, refer to [[:Category:Security interfaces|Security interfaces]]. </p>
 
==See also==
<ul>
<li>[[USE command: Directing output]] </li>
</ul>
 
[[Category: User commands]]
[[Category:Commands]]
[[Category:Commands]]

Latest revision as of 21:14, 16 January 2018

Summary

Privileges
Any user
Function
Directs Model 204 output to a specified sequential data set rather than to the normal output device

Syntax

USE outputname

Where outputname is in the form OUTxxxxx, referring to the run's data definition statement in the z/OS or z/VSE JCL, or to the FILEDEF statement in the CMS EXEC. Output name can also be the name of a DEFINE DATASET definition.

Example

USE OUTPRINT USE OUT1

Usage notes

When output from Model 204, such as a SOUL request or a DISPLAY command, is being sent to a data set, the USE command must be specified before any commands that produce output to that data set are executed.

If you are using an external security interface, authorization to open sequential data sets is validated during execution of the command. For more information, refer to Security interfaces.

See also