IEtlPlainLink.DestinationObjectInput

Syntax

DestinationObjectInput: IEtlPlainInput;

Description

The DestinationObjectInput property determines the object input, to which data is transferred.

Example

Sub Main;

Var

MB: IMetabase;

EtlTask: IEtlTask;

Links: IEtlPlainLinks;

Link: IEtlPlainLink;

Input: IEtlPlainInput;

S: String;

Begin

MB:=MetabaseClass.Active;

EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;

Links:=EtlTask.Links;

Link:=Links.Item(0);

Input:=Link.DestinationObjectInput;

S:=Input.Id;

End Sub Main;

After executing the example the "s" variable contains identifier of the object input, to which data is transferred. The repository object has the ETL identifier.

See also:

IEtlPlainLink