Name
global.PlatformEncryptedTables
Description
All tables on which platform encryption configurations are created.
Script
var PlatformEncryptedTables = Class.create();
PlatformEncryptedTables.prototype = {
process: function(dependent_value) {
var tableData = new SNC.MassEncryptionJob().getSupportedTableChoicesForJobType(dependent_value);
var tableJson = JSON.parse(tableData);
var choiceList = new GlideChoiceList();
for (var tableValue in tableJson)
choiceList.add(tableValue, tableJson[tableValue]);
return choiceList;
},
type: 'PlatformEncryptedTables'
};
Sys ID
cb806fd677000010bef6d0adda1061a4