IEtlTask.CustomData

Syntax

CustomData: String;

Description

The CustomData property determines an ETL task view in the JSON format.

Comments

The property is relevant for ETL tasks created in the web application. The property stores ETL task settings, information about connectors, transformers, and other objects added to the working area in the JSON format.

IMPORTANT. It is not recommended to change property value because it may result in incorrect ETL task work in the web application.

Example

Executing the example requires that the repository contains an ETL task with the ETL_TASK identifier. The task is created in the web application.

Add links to the Etl and Metabase system assemblies.

Sub UserProc;
Var
    Mb: IMetabase;
    Etl: IEtlTask;
Begin
    Mb := MetabaseClass.Active;
    Etl := Mb.ItemById("ETL_TASK").Bind As IEtlTask;
    Debug.WriteLine("CustomData: " + Etl.CustomData);
End Sub UserProc;

After executing the example the development environment console displays the ETL task view in the JSON format.

See also:

IEtlTask