DeduplicateExpression: IExpression;
The DeduplicateExpression property returns an object containing expression used to remove duplicates from the dictionary.
Sub Main;
Var
MB: IMetabase;
Dimens: IStandardDimension;
Expr: IExpression;
s: String;
Begin
MB:=MetabaseClass.Active;
Dimens := MB.ItemById("TAB_DIM").Bind As IStandardDimension;
Expr := Dimens.DeduplicateExpression;
s := Expr.AsString;
End Sub Main;
After executing the example the "s" variable contains the expression used to remove duplicates in the dictionary transformed into symbols. Table dictionary identifier: TAB_DIM.
See also: