$TsoCall: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 2: Line 2:
<span class="pageSubtitle"><section begin="desc" />Call program in user's TSO address space<section end="desc" /></span>
<span class="pageSubtitle"><section begin="desc" />Call program in user's TSO address space<section end="desc" /></span>


<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $TsoCall function is [[to be entered]].</p>
<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $TsoCall function.</p>


This function invokes a program in the user's TSO address space. $TsoCall performs a "synchronous" call to the program. That is, control is not returned from $TsoCall until the invoked program terminates.<blockquote> This function requires the special version of the TSO full screen interface to ''Model 204'' that is distributed by Sirius Software. </blockquote>  
This function invokes a program in the user's TSO address space. $TsoCall performs a "synchronous" call to the program. That is, control is not returned from $TsoCall until the invoked program terminates.<blockquote> This function requires the special version of the TSO full screen interface to ''Model 204'' that is distributed by Sirius Software.</blockquote>  


The $TsoCall function accepts five arguments and returns a numeric completion code.  
The $TsoCall function accepts five arguments and returns a numeric completion code.  
Line 17: Line 17:


The fifth argument is string containing the name of an image to receive output data from the invoked program. This is an optional argument.
The fifth argument is string containing the name of an image to receive output data from the invoked program. This is an optional argument.
==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %RESULT = $TsoCall(clist, path, parms, in_image, out_image)
<p class="syntax"><section begin="syntax" /> %RESULT = $TsoCall(clist, path, parms, in_image, out_image)
Line 24: Line 25:
<p class="caption">%RESULT is set either to the completion code from the invoked program or to an error code.</p>
<p class="caption">%RESULT is set either to the completion code from the invoked program or to an error code.</p>


$TsoCall normally returns the completion code from the invoked program. If there is some error that prevents the program from being invoked, however, an error code is returned to indicate the problem.


$TsoCall normally returns the completion code from the invoked program. If there is some error that prevents the program from being invoked, however, an error code is returned to indicate the problem.<p>
<p class="code">
0 - No program name specified
  0 - No program name specified
-1 - Connection broken
  -1 - Connection broken
-4 - Not a TSO full screen IODEV (IODEV 11)
  -4 - Not a TSO full screen IODEV (IODEV 11)
-8 - Incorrect version of TSO interface
  -8 - Incorrect version of TSO interface
  -16 - Image not found
  -16 - Image not found
  -20 - LOUTPB too small
  -20 - LOUTPB too small
Line 37: Line 39:
</p>
</p>


The following program invokes a program called 'DELETE' in the user's TSO address space with a parameter of 'DSN(TEMP.SAS.DATA)'.


The following program invokes a program called 'DELETE' in the user's TSO address space with a parameter of 'DSN(TEMP.SAS.DATA)'.
<p class="code"> B
<p class="code"> B
  %RC = $TsoExec( 'DELETE', , 'DSN(TEMP.SAS.DATA)')
  %RC = $TsoExec( 'DELETE', , 'DSN(TEMP.SAS.DATA)')
  END
  END
</p>
</p>
<p class="code">
<ul>
<li>&JAPF


<ul class="smallAndTightList">
<li>[[Japanese $Functions]]
</ul>
</ul>
</p>
<p class="caption">Products authorizing $TsoCall
<p class="caption">Products authorizing $TsoCall
</p>
</p>


[[Category:$Functions|$TsoCall]]
[[Category:$Functions|$TsoCall]]

Revision as of 20:51, 8 February 2011

<section begin="desc" />Call program in user's TSO address space<section end="desc" />

Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $TsoCall function.

This function invokes a program in the user's TSO address space. $TsoCall performs a "synchronous" call to the program. That is, control is not returned from $TsoCall until the invoked program terminates.

This function requires the special version of the TSO full screen interface to Model 204 that is distributed by Sirius Software.

The $TsoCall function accepts five arguments and returns a numeric completion code.

The first argument is a string containing the name of the program 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.

The second argument is a string containing the path name for the program to be invoked in the TSO address space. This is an optional argument.

The third argument is a string containing the parameters to be passed to the invoked program. This is an optional argument.

The fourth argument is a string containing the name of an image containing input data for the invoked program. This is an optional argument.

The fifth argument is string containing the name of an image to receive output data from the invoked program. This is an optional argument.

Syntax

<section begin="syntax" /> %RESULT = $TsoCall(clist, path, parms, in_image, out_image) <section end="syntax" />

$TsoCall Function

%RESULT is set either to the completion code from the invoked program or to an error code.

$TsoCall normally returns the completion code from the invoked program. If there is some error that prevents the program from being invoked, however, an error code is returned to indicate the problem.

0 - No program name specified -1 - Connection broken -4 - Not a TSO full screen IODEV (IODEV 11) -8 - Incorrect version of TSO interface -16 - Image not found -20 - LOUTPB too small -28 - Program name is too long

$TsoCall return codes

The following program invokes a program called 'DELETE' in the user's TSO address space with a parameter of 'DSN(TEMP.SAS.DATA)'.

B %RC = $TsoExec( 'DELETE', , 'DSN(TEMP.SAS.DATA)') END

Products authorizing $TsoCall