IEtlPlainLink.SourceObjectOutput

Syntax

SourceObjectOutput: IEtlPlainOutput;

Description

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

Example

Sub Main;

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 Main;

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