JavaScript object: system.users

The following JavaScript object is unique to Service Manager.

The system.users object allows you to call an XML list of the currently logged on Service Manager users into memory.

Usage

system.users

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.users.
  • Displays the results of system.users.
u = system.users;
print( "The value of system.users is:\n" + u );