InputType: EtlInputOutputType;
The InputType property returns input type of ETL task object.
Sub Main;
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.InputType;
End Sub Main;
After executing the example the Type variable contains type of input of the first ETL task object. The repository object has the ETL identifier.
See also: