JavaScript object: system.user

The following JavaScript object is unique to Service Manager.

The system.user object allows you to call an XML list of properties of the currently logged on Service Manager user.

Usage

system.user

Note Service Manager global system objects do not have constructors.

Arguments

There are no arguments for this object.

Properties

There are no properties for this object.

Methods

None

Example

This example does the following:

  • Sets a variable equal to system.user.
  • Displays the results of system.user.
var u = system.user;
print( "The value of system.user is:\n" + u );