IEtlPlainOutput.Outputs

Syntax

Outputs: IEtlPlainOutputs;

Description

The Outputs property returns the object that contains parent outputs list.

Example

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

After executing the example the Outputs variable contains a list of consumer data outputs of the first link of the ETL task. The repository object has the ETL identifier.

See also:

IEtlPlainOutput