SourceObjectOutput: IEtlPlainOutput;
The SourceObjectInput property determines the object output, from which data is sent.
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: