$Userid

From m204wiki
(Redirected from $USERID)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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, and $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 . . .