IMsFormulaTransform.AdditionalAttributes

Syntax

AdditionalAttributes: String;

Description

The AdditionalAttributes property determines identifiers of optional attributes of the time series database, which values should be obtained on data loading.

Comments

If loading of several optional attributes values is required, their identifiers are specified in the property via semicolon.

Example

Executing the example requires a time series database with the FC identifier that contains optional attributes with the BASE and FUNC identifiers. Modeling container of this time series database contains a model of determinate equation with the MODEL identifier.

Add links to the Cubes, Metabase, Ms system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    Rub: IRubricator;
    MsDescr: IMetabaseObjectDescriptor;
    Model: IMsModel;
    Transform: IMsFormulaTransform;
Begin
    mb := MetabaseClass.Active;
    Rub := mb.ItemById("FC").Bind As IRubricator;
    MsDescr := Rub.ModelSpace;
    Model := mb.ItemByIdNamespace("MODEL", MsDescr.Key).Edit As IMsModel;
    Transform := Model.Transform;
    Transform.AdditionalAttributes := "BASE;FUNC";
    (Model As IMetabaseObject).Save;
End Sub UserProc;

After executing the example the values of the BASE and FUNC optional attributes are obtained when loading data for the model.

Executing the example requires a time series database with the FC identifier that contains optional attributes with the BASE and FUNC identifiers. Modeling container of this time series database contains a model of determinate equation with the MODEL identifier.

After executing the example the values of the BASE and FUNC optional attributes are obtained when loading data for the model.

See also:

IMsFormulaTransform