ICubeMetaUpdateEx.MetafactsAttributeRemappings

Syntax

MetafactsAttributeRemappings: ICubeMetaUpdateAttributeRemappings;

Description

The MetafactsAttributeRemappings property returns the collection of correspondences between time series attributes of the copied database and time series attributes of database copy.

Comments

Use the ICubeMetaUpdateEx.MetavalsAttributeRemappings property to determine collection of correspondences of observation attributes of the copied base and the copy base.

Example

Executing the example requires a time series database with the FC identifier, containing a custom time series attribute COUNTRY and a time series database with the FC_COPY identifier, containing a custom time series attribute A_COUNTRY. These attributes must have the same characteristics.

Add links to the Metabase, Cubes system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    CrInfo: IMetabaseObjectCreateInfo;
    Obj: IMetabaseObject;
    ObjDesc: IMetabaseObjectDescriptor;
    RubUpdateEx: ICubeMetaUpdateEx;
    Rub: IRubricator;
    AttrRemapping: ICubeMetaUpdateAttributeRemappings;
    AttrR: ICubeMetaUpdateAttributeRemapping;
Begin
    mb := MetabaseClass.Active;
    CrInfo := Mb.CreateCreateInfo;
    CrInfo.ClassId := MetabaseObjectClass.KE_CLASS_CUBEMETAUPDATE;
    CrInfo.Id := Mb.GenerateId("Cube_Meta_Upd");
    CrInfo.Permanent := True;
    CrInfo.Parent := Mb.Root;
    ObjDesc := Mb.CreateObject(CrInfo);
    Obj := ObjDesc.Edit;
    RubUpdateEx := Obj As ICubeMetaUpdateEx;
    Rub := mb.ItemById("FC").Bind As IRubricator;
    RubUpdateEx.Rubricator := Rub;
    RubUpdateEx.Metabase := Mb;
    RubUpdateEx.RdsDatabase := Rub.Database;
    RubUpdateEx.TargetRubricator := mb.ItemById("FC_COPY_").Bind As IRubricator;
    AttrRemapping := RubUpdateEx.MetafactsAttributeRemappings;
    AttrR := AttrRemapping.FindById("A_COUNTRY");
    AttrR.Source := "COUNTRY";
    AttrR.Type := CubeMetaUpdateAttributeRemappingType.Source;
    Obj.Save;
End Sub UserProc;

After executing the example the correspondence is set between the A_COUNTRY and COUNTRY attributes: when data is copied from the FC database to the FC_COPY database, data of the COUNTRY attribute is copied to the A_COUNTRY attribute. The object that contains copy settings is saved with the Cube_Meta_Upd identifier.

See also:

ICubeMetaUpdateEx