$Account: Difference between revisions
Jump to navigation
Jump to search
(Automatically generated page update) |
m (misc cleanup) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<p>The $ | {{DISPLAYTITLE:$Account}} | ||
<p> | |||
The <var>$Account</var> function returns a variable-length character string equal to the account under which the user is logged into <var class="product">Model 204</var>. If the login feature is not in use, <var>$Account</var> returns the string <code>NO ACCOUNT</code>. </p> | |||
This function takes no arguments. | |||
The <var>[[ACCOUNT parameter|ACCOUNT]]</var> parameter returns the same value as the <var>$Account</var> function. | |||
==Example== | |||
<p class="code">BEGIN | <p class="code">BEGIN | ||
SET HEADER 1 'MORTON CORPORATION' - | SET HEADER 1 'MORTON CORPORATION' - | ||
Line 6: | Line 13: | ||
SET HEADER 2 | SET HEADER 2 | ||
SET HEADER 3 'ACCOUNT: ' AT COLUMN 10 - | SET HEADER 3 'ACCOUNT: ' AT COLUMN 10 - | ||
WITH $ | WITH $Account | ||
. | . | ||
. | . | ||
. | . | ||
</p> | </p> | ||
[[Category:SOUL $functions]] | [[Category:SOUL $functions]] |
Latest revision as of 20:51, 9 March 2015
The $Account function returns a variable-length character string equal to the account under which the user is logged into Model 204. If the login feature is not in use, $Account returns the string NO ACCOUNT
.
This function takes no arguments.
The ACCOUNT parameter returns the same value as the $Account function.
Example
BEGIN SET HEADER 1 'MORTON CORPORATION' - AT COLUMN 10 SET HEADER 2 SET HEADER 3 'ACCOUNT: ' AT COLUMN 10 - WITH $Account . . .