Name

global.NormalChangeProcess

Description

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

Script

var NormalChangeProcess = Class.create();

NormalChangeProcess.newChangeProcess = NormalChangeProcessSNC.newChangeProcess;
NormalChangeProcess.newChange = NormalChangeProcessSNC.newChange;
NormalChangeProcess.findAll = NormalChangeProcessSNC.findAll;
NormalChangeProcess.findById = NormalChangeProcessSNC.findById;

NormalChangeProcess.prototype = Object.extendsObject(NormalChangeProcessSNC, {

  initialize: function(changeGr) {
  	NormalChangeProcessSNC.prototype.initialize.call(this, changeGr);
  },

  type: "NormalChangeProcess"
});

Sys ID

e5376174534313004667ddeeff7b128f

Offical Documentation

Official Docs: