IEtlPlainOutput.Link

Syntax

Link: IEtlPlainLink;

Description

The Link property returns the link to object linking ETL objects.

Example

Sub UserProc;
Var
    MB: IMetabase;
    EtlTask: IEtlTask;
    Provider: IEtlPlainDataProvider;
    Link: IEtlPlainLink;
Begin
    MB := MetabaseClass.Active;
    EtlTask := MB.ItemById("ETL").Bind As IEtlTask;
    Provider := EtlTask.Item(0As IEtlPlainDataProvider;
    Link := Provider.PlainOutput.Link;
End Sub UserProc;

After executing the example the Link variable contains linking object of ETL task consumer object. The repository object has the ETL identifier.

See also:

IEtlPlainOutput