$TsoCmd: Difference between revisions
m (1 revision) |
EllieWiccan (talk | contribs) (Automatically generated page update) |
||
(17 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
<span class="pageSubtitle">Invoke command in user's TSO address space</span> | <span class="pageSubtitle">Invoke command in user's TSO address space</span> | ||
<p class=" | <p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $TsoCmd function.</p> | ||
This function invokes a command in the user's TSO address space.<p>'''Note: ''' This function requires the special version of the TSO full screen interface to <var class="product">Model 204</var> that is distributed by Sirius Software. </ | This function invokes a command in the user's TSO address space. | ||
<p> | |||
'''Note: ''' This function requires the special version of the TSO full screen interface to <var class="product">Model 204</var> that is distributed by Sirius Software. </p> | |||
The <var>$TsoCmd</var> function accepts two arguments and returns a numeric completion code. | The <var>$TsoCmd</var> function accepts two arguments and returns a numeric completion code. | ||
==Syntax== | |||
<p class="syntax"><span class="term">%result</span> = <span class="literal">$TsoCmd</span>([<span class="term">clist</span>], [<span class="term">parms</span>]) | |||
</p> | |||
<table class="syntaxTable"> | |||
<tr><th>%result</th> | |||
<td>Either the completion code from the invoked command or an error code.</td></tr> | |||
<tr><th>clist</th> | |||
< | <td>A string containing the name of the command to be invoked in the TSO address space. This is an optional argument; and if it is null or missing, no processing is performed and a completion code of 0 is returned. </td></tr> | ||
< | |||
< | <tr><th>parms</th> | ||
</ | <td>A string containing the parameters to be passed to the invoked command. This is an optional argument.</td></tr> | ||
< | </table> | ||
===Error codes=== | |||
<var>$TsoCmd</var> normally returns the completion code from the invoked command. If there is some error that prevents the command from being invoked, however, an error code is returned to indicate the problem. | <var>$TsoCmd</var> normally returns the completion code from the invoked command. If there is some error that prevents the command from being invoked, however, an error code is returned to indicate the problem. | ||
<p class="code"> | <p class="code"> 0 - No command name specified | ||
-1 - Connection broken | |||
-4 - Not a TSO full screen IODEV (IODEV 11) | |||
-8 - Incorrect version of TSO interface | |||
-20 - LOUTPB too small | |||
-28 - Command name is too long | |||
</p> | </p> | ||
The following program invokes a command called < | ==Example== | ||
The following program invokes a command called <code>ALLOCATE</code> in the user's TSO address space with a parameter of <code>DSN('M204.DATA') NEW TRACKS SPACE(15,10)</code>. | |||
<p class="code"> B | <p class="code">B | ||
%RC = $TsoCmd( 'ALLOCATE', - | |||
'DSN(''M204.DATA'') NEW TRACKS SPACE(15,10)') | |||
END | |||
</p> | </p> | ||
==Products authorizing {{PAGENAMEE}}== | |||
<ul class="smallAndTightList"> | <ul class="smallAndTightList"> | ||
<li> | <li>Japanese $functions | ||
</ul> | </ul> | ||
[[Category:$Functions|$TsoCmd]] | [[Category:$Functions|$TsoCmd]] |
Latest revision as of 23:23, 20 September 2018
Invoke command in user's TSO address space
Note: Many $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $TsoCmd function.
This function invokes a command in the user's TSO address space.
Note: This function requires the special version of the TSO full screen interface to Model 204 that is distributed by Sirius Software.
The $TsoCmd function accepts two arguments and returns a numeric completion code.
Syntax
%result = $TsoCmd([clist], [parms])
%result | Either the completion code from the invoked command or an error code. |
---|---|
clist | A string containing the name of the command to be invoked in the TSO address space. This is an optional argument; and if it is null or missing, no processing is performed and a completion code of 0 is returned. |
parms | A string containing the parameters to be passed to the invoked command. This is an optional argument. |
Error codes
$TsoCmd normally returns the completion code from the invoked command. If there is some error that prevents the command from being invoked, however, an error code is returned to indicate the problem.
0 - No command name specified -1 - Connection broken -4 - Not a TSO full screen IODEV (IODEV 11) -8 - Incorrect version of TSO interface -20 - LOUTPB too small -28 - Command name is too long
Example
The following program invokes a command called ALLOCATE
in the user's TSO address space with a parameter of DSN('M204.DATA') NEW TRACKS SPACE(15,10)
.
B %RC = $TsoCmd( 'ALLOCATE', - 'DSN(''M204.DATA'') NEW TRACKS SPACE(15,10)') END
Products authorizing $TsoCmd
- Japanese $functions