Name

global.UpdateSetBackOutVisible

Description

Used by Update Set Back Out UI Action and Notice business rule

Script

var UpdateSetBackOutVisible = Class.create();
UpdateSetBackOutVisible.prototype = Object.extendsObject(AbstractUpdateUIActionUtil, {
  initialize: function() {
  },

  _userHasAccess: function(gr) {
  	return (gr.canWrite() &&
  		(new GlideUpdateManager2()).allowVersionBackout(gr.sys_id) &&
  		this._isCurrentDomainSafe() &&
  		gs.hasRole('admin'));
  },

  type: 'UpdateSetBackOutVisible'
});

Sys ID

e6eeb2cb47022200a03a19fbac9a7129

Offical Documentation

Official Docs: