Links: IEtlPlainLinks;
The Links property returns the object that contains all links between ETL task objects.
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: