SourceTable Property

The source data table of a variable. Only applicable for Datarow variables.

Syntax

Property SourceTable As String

Parameters

None

Examples

IronPython

#Get variable source table
myTable = Host.ScriptData.Variable[varName].SourceTable

#Set variable source table
Host.ScriptData.Variable[varName].SourceTable = "Transactions"


C#

//Get variable source table
string myTable = ScriptData.Variables[varName].SourceTable;

//Set variable source table 

ScriptData.Variables[varName].SourceTable = "Transactions";

Remarks