IEtlPlainFieldsMapper.Name

Syntax

Name: String;

Description

The Name property determines a name of the link between output and input fields.

Example

Sub UserProc;
Var
    MB: IMetabase;
    EtlTask: IEtlTask;
    Object: IEtlPlainDataJoin;
    Mapper: IEtlPlainFieldsMapper;
    s: String;
Begin
    MB := MetabaseClass.Active;
    EtlTask := MB.ItemById("ETL").Bind As IEtlTask;
    Object := EtlTask.Item(0As IEtlPlainDataJoin;
    Mapper := Object.Mapper;
    s := Mapper.Name;
End Sub UserProc;

After executing the example the "s" variable contains a name of the link between input and output fields. ETL task object is Join. The repository object has the ETL identifier.

See also:

IEtlPlainFieldsMapper