Name

global.TransformerDefinitionOutputStrategyList

Description

Populates the list of choices for TransformerDefinition.OutputStrategy. These are the names of tables that represent the OutputStrategy implementation classes.

Script

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

  type: 'TransformerDefinitionOutputStrategyList',

  process: function() {
  	// Add table names to the list. 
  	// These should represent classes that implement ITransformerOutputStrategy interface.
  	var list = ['none','sys_complex_object_output_strategy'];
  	return list;
  }
};

Sys ID

8d0ca0f20f3333009ab0f6eac4767e00

Offical Documentation

Official Docs: