$TsoCall: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
mNo edit summary
Line 10: Line 10:


==Syntax==
==Syntax==
<p class="syntax"><span class="term">%result</span> = <span class="literal">$TsoCall</span>(<span class="term">clist, path, parms, in_image, out_image)
<p class="syntax"><span class="term">%result</span> = <span class="literal">$TsoCall</span>([<span class="term">clist</span>], [<span class="term">path</span>], [<span class="term">parms</span>], [<span class="term">in_image</span>], [<span class="term">out_image</span>])
</p>
</p>


===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%result</th>
<tr><th>%result</th>
Line 38: Line 37:
<var>$TsoCall</var> 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.
<var>$TsoCall</var> 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 class="code">   0 - No program name specified
<p class="code"> 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)
Line 48: Line 47:


==Example==
==Example==
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 <code>DELETE</code> in the user's TSO address space with a parameter of <code>DSN(TEMP.SAS.DATA)</code>.
<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>


==Products authorizing {{PAGENAMEE}}==  
==Products authorizing {{PAGENAMEE}}==  
Line 59: Line 57:
<li>[[Japanese $Functions]]
<li>[[Japanese $Functions]]
</ul>
</ul>
<p>
</p>


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

Revision as of 14:09, 12 April 2013

Call program in user's TSO address space

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.

Note: 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.


Syntax

%result = $TsoCall([clist], [path], [parms], [in_image], [out_image])

Syntax terms

%result Either a completion code from the invoked program or an error code.
clist 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.
path A string containing the path name for the program to be invoked in the TSO address space. This is an optional argument.
parms A string containing the parameters to be passed to the invoked program. This is an optional argument.
in_image A string containing the name of an image containing input data for the invoked program. This is an optional argument.
out_image A string containing the name of an image to receive output data from the invoked program. This is an optional argument.

Status codes

$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

Example

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