$Userid: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Mlarocca moved page $USERID to $Userid: Lower case change)
No edit summary
Line 3: Line 3:
<p>
<p>
The <var>[[USERID parameter|USERID]]</var> parameter returns the same value as the <var>$USERID</var> function. </p>
The <var>[[USERID parameter|USERID]]</var> parameter returns the same value as the <var>$USERID</var> function. </p>
<p>[[$Acct|$ACCT]] returns the same value as <var>$USERID</var>.</p>
<p>
<p>
The <var>$USERID</var> function takes no arguments. </p>
The <var>$USERID</var> function takes no arguments. </p>


===Example===
===Example===

Revision as of 11:01, 8 January 2018

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.

$ACCT returns the same value as $USERID.

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 . . .