IEtlTask.Links

Syntax

Links: IEtlPlainLinks;

Description

The Links property returns the object that contains all links between ETL task objects.

Example

Sub UserProc;
Var
    MB: IMetabase;
    EtlTask: IEtlTask;
    Object: IEtlObject;
    ETLLinks: IEtlPlainLinks;
    i: Integer;
Begin
    MB := MetabaseClass.Active;
    EtlTask := MB.ItemById("ETL").Bind As IEtlTask;
    ETLLinks := EtlTask.Links;
    i := ETLLinks.Count;
End Sub UserProc;

After executing the example the "i" variable contains the number of links between ETL task objects. The repository object has the ETL identifier.

See also:

IEtlTask