$TsoExit

From m204wiki
Revision as of 21:33, 7 November 2012 by DmeWiccan (talk | contribs) (1 revision)
Jump to navigation Jump to search

Terminate TSO full screen interface session, stack command

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

This function requests that the TSO full screen interface terminate the session and optionally stacks a command to be executed upon termination.

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

The $TsoExit function accepts one argument and returns a numeric completion code.

Syntax

<section begin="syntax" />%result = $TsoExit(command) <section end="syntax" />

where the command argument is a string containing the name of the command to be invoked in the TSO address space. This is an optional argument; if it is null or missing, no command is stacked.

%result is set to a status code:

0 - Function successful -1 - Connection broken -4 - Not a TSO full screen IODEV (IODEV 11) -8 - Incorrect version of TSO interface -20 - LOUTPB too small

Example

The following program requests the TSO full screen interface to terminate its session with Model 204 and then issue the 'LOGOFF' command in the TSO address space.

B %RC = $TsoExit( 'LOGOFF' ) END

Products authorizing $TsoExit