JavaScript object: system.oldrecord

The following JavaScript object is unique to Service Manager.

The system.oldrecord object allows you to call the last Service Manager record into memory.

Usage

system.oldrecord

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