Name

global.IncidentUtils

Description

Customer extensible Class of IncidentUtilsSNC . Customers can override the public methods of IncidentUtilsSNC for their own business needs.

Script

var IncidentUtils = Class.create();
IncidentUtils.prototype = Object.extendsObject(IncidentUtilsSNC, {
  initialize: function() {
  IncidentUtilsSNC.prototype.initialize.call(this);
  },
  /***************Custom changes****************/	
  type: 'IncidentUtils'	
});

IncidentUtils.isCopyIncidentEnabled = function(current) {
  var incidentUtils = new IncidentUtils();
  return incidentUtils.isCopyIncidentFlagValid();
  
};

IncidentUtils.isCreateChildIncidentEnabled = function(current) {
  var incidentUtils = new IncidentUtils();
  return incidentUtils.isCreateChildIncidentFlagValid();
  
};

Sys ID

87e5e796531232000600e26b88dc3478

Offical Documentation

Official Docs: