Name

global.UpdateTableChoiceList

Description

Utility class to return a list of update_synch enabled tablenames

Script

gs.include("PrototypeServer");
gs.include("TableChoiceList");

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

  generate : function() {
    var tl = new GlideUpdateTableChoiceList();
    tl.setAll(false);
    tl.setCanRead(false);
    tl.setShowTableNames(true);
    tl.generateChoices();
    this._toXML(tl);
  }
});

Sys ID

89b7d230bf332000421cdc2ecf073975

Offical Documentation

Official Docs: