DimensionElementInsert
Description:
Inserts a new element into a dimension.
Syntax:
DimensionElementInsert(DimName, InsertionPoint, ElName, ElType);
Arguments:
DimName - Name of the dimension
InsertionPoint - Name of existing dimension element after before which the new element is to be inserted. Leave this parameter blank to insert the new element in the end.
ElName - Name you want to assign to the new element
ElType - Type of the new element. N - Numeric, C - Consolidated, S - String
Return Type:
nothing
Example:
DimensionElementInsert('Month', '', 'Dec', 'N');
This will insert a new element named Dec in the end of Months dimension. The type of element will be numeric.