Name

global.NoSystemTableChoiceList

Description

Return a list of tables that are not deriving from sys_metadata

Script

var NoSystemTableChoiceList = Class.create();
NoSystemTableChoiceList.prototype = {
  initialize: function() {
  },
  
  process: function() {
    var tl = new GlideTableChoiceList();
    tl.setSelectedOnly(false);
    tl.setSelectedField(null);
    tl.setSelected(null);
    tl.setForceSelected(false);
    tl.setNoViews(true);
    tl.setNoSystemTables(true);
    tl.setCurrentTableName(null);
    tl.setNoIndexTables(true);

    return tl;
  },


  type: 'NoSystemTableChoiceList'
};

Sys ID

93cab3d10b101300c438ee6537673a93

Offical Documentation

Official Docs: