DisplayDataDomain: DbDataDomain;
The DisplayDataDomain property returns type of multibyte information displayed in the attribute.
To get data type in order to save multibyte information in the attribute, use the IDimAttribute.DataDomain property.
Executing the example requires that repository contains table MDM dictionary with the TMDMDICT_MEMO identifier.
To execute the example, add links to the Dal, Dimensions, Metabase system assemblies.
Sub UserProc;
Var
mb: IMetabase;
dimension: IDimensionModel;
attribute: IDimAttribute;
attributes: IDimAttributes;
i: Integer;
Begin
// Get current repository
mb := MetabaseClass.Active;
// Get MDM dictionary
dimension := mb.ItemById("TMDMDICT_MEMO").Bind As IDimensionModel;
// Get dictionary attributes
attributes := dimension.Attributes;
// Parse obtained attributes
For i := 0 To attributes.Count - 1 Do
attribute := attributes.Item(i);
// If attribute displays data of the Long Text type, display information about it
If (attribute.DisplayDataDomain = DbDataDomain.Memo) And
(attribute.DataType = DbDataType.String) Then
Debug.WriteLine("Name: " + attribute.Name);
Debug.WriteLine("Identifier: " + attribute.Id);
Debug.WriteLine("Key: " + attribute.Key.ToString);
End If;
End For;
End Sub UserProc;
After executing the example the console window displays information about the Long Text attributes, if they are present in the MDM dictionary.
See also: