IEtlObject.ObjectTypeName

Syntax

ObjectTypeName: String;

Description

The ObjectType property returns a name of ETL task object type.

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.ObjectTypeName;

End Sub Main;

After executing this example the "s" variable contains a name of the first ETL task object type. Repository object has the ETL identifier.

See also:

IEtlObject