Name

global.ChoiceListHelper

Description

No description available

Script

var ChoiceListHelper = Class.create();
ChoiceListHelper.prototype = {
  initialize : function(tableName, fieldName) {
    this.tableName = tableName;
    this.fieldName = fieldName;
  },
  
  getChoiceSysId : function(choice) {
     var gr = new GlideRecord("sys_choice");
     gr.addQuery("name", this.tableName);
     gr.addQuery("element", this.fieldName);
     gr.addQuery("value", choice);
     gr.query();

     if (gr.next()) {
       return gr.sys_id;
     }

     return null;
 },

  type: 'ChoiceListHelper'
};

Sys ID

9671b254d7201200b93ca5f75e610396

Offical Documentation

Official Docs: