IRdsDictionary.HasDimMultipleValues

Syntax

HasDimMultipleValues: Boolean;

Description

The HasDimMultipleValues property determines whether multiple values are loaded to IDimAttributeInstance.

Comments

Available values:

Example

Executing the example requires an MDM dictionary with the T_DICTIONARY identifier located in the repository with the MDM identifier.

Add links to the Metabase, Rds system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Dict: IRdsDictionary;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemByIdNamespace("T_DICTIONARY", MB.ItemById("MDM").Key).Edit;
    Dict := MObj As IRdsDictionary;
    Dict.HasDimMultipleValues := True;
    MObj.Save;
End Sub UserProc;

After executing the example multiple values are loaded to the dictionary attribute.

See also:

IRdsDictionary