$TSOId: Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
mNo edit summary |
||
Line 9: | Line 9: | ||
==Syntax== | ==Syntax== | ||
<p class="syntax"><section begin="syntax" /> % | <p class="syntax"><section begin="syntax" />%term = $TSOId | ||
<section end="syntax" /></p> | <section end="syntax" /></p> | ||
==Example== | |||
The following program displays the user's TSO userid. | The following program displays the user's TSO userid. | ||
<p class="code"> B | <p class="code">B | ||
PRINT $TSOId | |||
END | |||
</p> | </p> | ||
<ul class="smallAndTightList"> | <ul class="smallAndTightList"> |
Revision as of 20:05, 24 October 2012
TSO userid user's thread
Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $TSOId function.
This function returns the TSO userid of the current user thread.
Note: This function requires the special version of the TSO full screen interface to Model 204 that is distributed by Sirius Software.
The $TSOId function accepts no arguments and returns either an 8 byte string containing the TSO userid of the Model 204 user or a null string indicating that the user is not a TSO user or that the Sirius Software TSO Interface has not been installed.
Syntax
<section begin="syntax" />%term = $TSOId <section end="syntax" />
Example
The following program displays the user's TSO userid.
B PRINT $TSOId END