Name

global.TimelineParentReferenceFields

Description

No description available

Script

var TimelineParentReferenceFields = Class.create();
TimelineParentReferenceFields.prototype = {
  initialize: function() {
  },

  process: function(table, containing_table, value) {
      var result = [];
      var gr = new GlideRecord("cmn_timeline_page");
      gr.addQuery("sys_id", value)
      gr.query();
      if (gr.next()){
          result.push('' + gr.table);
      }
      return result;
  },

  type: 'TimelineParentReferenceFields'
}

Sys ID

11abe222ff321000dadaefff0efe1ef0

Offical Documentation

Official Docs: