IEtlObject.OutputType

Syntax

OutputType: EtlInputOutputType;

Description

The OutputType property returns output type of ETL task object.

Example

Sub UserProc;
Var
    MB: IMetabase;
    EtlTask: IEtlTask;
    Object: IEtlObject;
    Type: EtlInputOutputType;
Begin
    MB:=MetabaseClass.Active;
    EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;
    Object:=EtlTask.Item(0);
    Type:=Object.OutputType;
End Sub UserProc;

After executing the example the Type variable contains type of the first ETL task object output. The repository object has the ETL identifier.

See also:

IEtlObject