IEtlObject.Name

Syntax

Name: String;

Description

The Name property determines name of ETL task object.

Example

Sub Main;

Var

MB: IMetabase;

EtlTask: IEtlTask;

Object: IEtlObject;

s: String;

Begin

MB:=MetabaseClass.Active;

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

Object:=EtlTask.Item(0);

s:=Object.Name;

End Sub Main;

After executing the example the "s" variable contains a name of the first ETL task object. The repository object has the ETL identifier.

See also:

IEtlObject