Link: IEtlPlainLink;
The Link property returns the link to object linking ETL objects.
Sub Main;
Var
MB: IMetabase;
EtlTask: IEtlTask;
Provider: IEtlPlainDataProvider;
Link: IEtlPlainLink;
Begin
MB:=MetabaseClass.Active;
EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;
Provider:=EtlTask.Item(0) As IEtlPlainDataProvider;
Link:=Provider.PlainOutput.Link;
End Sub Main;
After executing the example the Link variable contains linking object of ETL task source object. The repository object has the ETL identifier.
See also: