Inputs: IEtlPlainInputs;
The Inputs property returns the object that contains parent inputs list.
Sub UserProc;
Var
MB: IMetabase;
EtlTask: IEtlTask;
ALLLinks: IEtlPlainLinks;
Link: IEtlPlainLink;
Input: IEtlPlainInput;
Inputs: IEtlPlainInputs;
Begin
MB := MetabaseClass.Active;
EtlTask := MB.ItemById("ETL").Bind As IEtlTask;
ALLLinks := EtlTask.Links;
Link := ALLLinks.Item(0);
Input := Link.DestinationObjectInput;
Inputs := Input.Inputs;
End Sub UserProc;
After executing the example the Inputs variable contains a list of data consumer inputs of the first link of the ETL task. The repository object has the ETL identifier.
See also: