$Userid: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
mNo edit summary
Line 1: Line 1:
<p>The $USERID function returns a variable-length character string equal to the user ID under which the user is logged into <var class="product">Model&nbsp;204</var>. If the login feature is not in use, $USERID returns the string NO USERID.     </p>
<p>
<p>The USERID parameter returns the same value as the $USERID function. See the Rocket <var class="product">Model&nbsp;204</var> Parameter and Command Reference Manual. The $USERID function takes no arguments. </p>
The <var>$USERID</var> function returns a variable-length character string equal to the user ID under which the user is logged into <var class="product">Model&nbsp;204</var>. If the login feature is not in use, <var>$USERID</var> returns the string <code>NO USERID</code>.   </p>
<b>Example</b>
<p>
The <var>[[USERID parameter|USERID]]</var> parameter returns the same value as the <var>$USERID</var> function. </p>
<p>
The <var>$USERID</var> function takes no arguments. </p>
 
===Example===
<p class="code">BEGIN
<p class="code">BEGIN
SET HEADER 1 'MONTHLY SALES REPORT' -
SET HEADER 1 'MONTHLY SALES REPORT' -
Line 12: Line 17:
       .  
       .  
</p>
</p>
[[Category:SOUL $functions]]
[[Category:SOUL $functions]]

Revision as of 20:04, 14 April 2014

The $USERID function returns a variable-length character string equal to the user ID under which the user is logged into Model 204. If the login feature is not in use, $USERID returns the string NO USERID.

The USERID parameter returns the same value as the $USERID function.

The $USERID function takes no arguments.

Example

BEGIN SET HEADER 1 'MONTHLY SALES REPORT' - AT COLUMN 10 SET HEADER 2 SET HEADER 3 'PREPARED BY: ' AT COLUMN 10 - WITH $USERID . . .