Name

global.IsSLAConfigurationOverpopulated

Description

Returns error message if SLA Configuration contains too many elements

Script

var IsSLAConfigurationOverpopulated = Class.create();
IsSLAConfigurationOverpopulated.prototype = Object.extendsObject(AbstractAjaxProcessor, {
  type: 'IsSLAConfigurationOverpopulated',
  
  getErrorMessage: function() {
  	var slaConfSysId = this.getParameter('sla_conf_sys_id');
      var slaConfm = new SNC.SlaConfigurationManager();
  	var err = slaConfm.getErrorMessageIfTooManyElements(slaConfSysId);
  	return err;
  }
});

Sys ID

4eb8146093111200e0e931f6357ffbd7

Offical Documentation

Official Docs: