IEtlPlainLink.DestinationObjectInput

Syntax

DestinationObjectInput: IEtlPlainInput;

Description

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

Example

Sub UserProc;
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 UserProc;

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