Name

global.ChangeProcess

Description

The change request base API. Provides an abstraction from the legacy and new change types and state models. If customization is required please override functions here.

Script

var ChangeProcess = Class.create();

ChangeProcess.newChangeProcess = ChangeProcessSNC.newChangeProcess;
ChangeProcess.newChange = ChangeProcessSNC.newChange;
ChangeProcess.findAll = ChangeProcessSNC.findAll;
ChangeProcess.findById = ChangeProcessSNC.findById;

ChangeProcess.prototype = Object.extendsObject(ChangeProcessSNC, {
  initialize: function(_gr, _gs) {
  	ChangeProcessSNC.prototype.initialize.call(this, _gr, _gs);
  },

  type: "ChangeProcess"
});

Sys ID

bd4db967b733130096c3e4f6ee11a979

Offical Documentation

Official Docs: