IEtlPlainLink.SourceObjectOutput

Syntax

SourceObjectOutput: IEtlPlainOutput;

Description

The SourceObjectInput property determines the object output, from which data is sent.

Example

Sub UserProc;
Var
    MB: IMetabase;
    EtlTask: IEtlTask;
    Links: IEtlPlainLinks;
    Link: IEtlPlainLink;
    Output: IEtlPlainOutput;
    s: String;
Begin
    MB := MetabaseClass.Active;
    EtlTask := MB.ItemById("ETL").Bind As IEtlTask;
    Links := EtlTask.Links;
    Link := Links.Item(0);
    Output := Link.SourceObjectOutput;
    s := Output.Id;
End Sub UserProc;

After executing the example the "s" variable contains identifier of object output, from which data is sent. The repository object has the ETL identifier.

See also:

IEtlPlainLink