$Account: Difference between revisions
Jump to navigation
Jump to search
(Automatically generated page update) |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:$Account}} | {{DISPLAYTITLE:$Account}} | ||
<p>The $ | <p>The $Account 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, $Account returns the string 'NO ACCOUNT'. This function takes no arguments. The ACCOUNT parameter returns the same value as the $Account function. See the Rocket <var class="product">Model 204</var> Parameter and Command Reference Manual. </p> | ||
<b>Example</b> | <b>Example</b> | ||
<p class="code">BEGIN | <p class="code">BEGIN | ||
Line 7: | Line 7: | ||
SET HEADER 2 | SET HEADER 2 | ||
SET HEADER 3 'ACCOUNT: ' AT COLUMN 10 - | SET HEADER 3 'ACCOUNT: ' AT COLUMN 10 - | ||
WITH $ | WITH $Account | ||
. | . | ||
. | . |
Revision as of 20:02, 11 June 2014
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. See the Rocket Model 204 Parameter and Command Reference Manual.
Example
BEGIN SET HEADER 1 'MORTON CORPORATION' - AT COLUMN 10 SET HEADER 2 SET HEADER 3 'ACCOUNT: ' AT COLUMN 10 - WITH $Account . . .