IEtlObject.Description

Syntax

Description: String;

Description

The Description property determines description (annotation) of ETL task object.

Example

Sub UserProc;
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.Description;
End Sub UserProc;

After executing the example the "s" variable contains an annotation for the first ETL task object. The repository object has the ETL identifier.

See also:

IEtlObject