IEtlPlainOutputs.EtlObject

Syntax

EtlObject: IEtlObject;

Description

The EtlObject property returns ETL object.

Example

Sub Main;

Var

MB: IMetabase;

EtlTask: IEtlTask;

Join: IEtlPlainDataSplit;

Outputs: IEtlPlainOutputs;

Object: IEtlObject;

S: String;

Begin

MB:=MetabaseClass.Active;

EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;

Join:=EtlTask.Item(0) As IEtlPlainDataSplit;

Outputs:=Join.PlainOutputs;

Object:=Outputs.EtlObject;

s:=Object.Name;

End Sub Main;

After executing this example the "s" variable contains an object name that corresponds to outputs list. Type of ETL task object is Split. Repository object has the ETL identifier.

See also:

IEtlPlainOutputs