Specifies whether multiple hierarchies of a dimension should be merged in the Other axis in the Data Layout panel and in Member Filter.
Microsoft® Analysis Services, SAP BW
mergedDimensions="dimensionString"
where:
| Argument | Default | Description |
|---|---|---|
| dimensionString | null | A comma-delimited String representing the prefix of the dimensions to merge in the Other axis of the Data Layout panel |
Microsoft Analysis Services and SAP BW support multiple hierarchies, allowing alternate views of cube data. Multiple hierarchies are two or more dimensions with names that share the same prefix followed by a period but have different suffixes. For example, Time.Calendar and Time.Fiscal are two different dimensions, but if you merge them into a “logical” dimension (which does not actually exist), you can enhance the usability of your application as your users are less likely to be confused.
The following example shows how to merge all hierarchies with the prefix “Time” into a non-existing dimension called Time, and all hierarchies with the prefix “Products” into a non-existing dimension called Products:
mergedDimensions="Time,Products"
getCube().getMultipleHierarchies() in the Javadoc documentation.