IRdsDictionary.DynamicDimInstance

Syntax

DynamicDimInstance: Boolean;

Description

The DynamicDimInstance property determines whether dynamic loading of the MDM dictionary elements is used.

Comments

Available values:

Example

Executing the example requires that the repository contains an MDM dictionary with the MDM identifier.

Add links to the Metabase and Rds system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    Dict: IRdsDictionary;
Begin
    MB := MetabaseClass.Active;
    // Get MDM dictionary
    Dict := MB.ItemById("DIM").Edit As IRdsDictionary;
    // Set dynamic loading
    Dict.DynamicDimInstance := True;
    (Dict As IMetabaseObject).Save;
End Sub UserProc;

After executing the example, dynamic loading for the MDM dictionary is set up.

See also:

IRdsDictionary