$TSOId: Difference between revisions
m (1 revision) |
mNo edit summary |
||
Line 2: | Line 2: | ||
<span class="pageSubtitle"><section begin="desc" />TSO userid user's thread<section end="desc" /></span> | <span class="pageSubtitle"><section begin="desc" />TSO userid user's thread<section end="desc" /></span> | ||
<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. | <p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is no OO equivalent for the $TSOId function.</p> | ||
This function returns the TSO userid of the current user thread.<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 returns the TSO userid of the current user thread.<blockquote> This function requires the special version of the TSO full screen interface to ''Model 204'' that is distributed by Sirius Software. </blockquote> | ||
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. | 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== | ==Syntax== | ||
<p class="syntax"><section begin="syntax" /> %TERM = $TSOId | <p class="syntax"><section begin="syntax" /> %TERM = $TSOId | ||
Line 14: | Line 15: | ||
<p class="caption">%TSOID is set to either a null or 8-byte string.</p> | <p class="caption">%TSOID is set to either a null or 8-byte string.</p> | ||
The following program displays the user's TSO userid. | |||
<p class="code"> B | <p class="code"> B | ||
PRINT $TSOId | PRINT $TSOId | ||
END | END | ||
</p> | </p> | ||
<ul class="smallAndTightList"> | |||
<li>[[Japanese $functions]] | |||
</ul> | </ul> | ||
<p class="caption">Products authorizing $TSOId | <p class="caption">Products authorizing $TSOId | ||
</p> | </p> | ||
[[Category:$Functions|$TSOId]] | [[Category:$Functions|$TSOId]] |
Revision as of 20:32, 8 February 2011
<section begin="desc" />TSO userid user's thread<section end="desc" />
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.
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" />
The following program displays the user's TSO userid.
B PRINT $TSOId END