Name

global.SysAppPayloadGeneratorSourceIDTables

Description

Restricts the tables users can choose from for their source ID.

Script

var SysAppPayloadGeneratorSourceIDTables = Class.create();
SysAppPayloadGeneratorSourceIDTables.prototype = {
  initialize: function() {
  },
  process: function() {
  	// For now limit the user to select scoped applications. When update sets are supported we will
  	// add the sys_update table to this array.
  	var sourceIdTables = ['sys_app'];
  	return sourceIdTables;
  },
  type: 'SysAppPayloadGeneratorSourceIDTables'
};

Sys ID

1c8580970f3010108c9c5019c4767e10

Offical Documentation

Official Docs: