Cube GetCellNoteDimensionMask

Returns the dimension mask which defines the visibility of the cell notes on cells.

Normally a cell note is a note to one single cell. A cell is addressed by a cell coordinate that contains exactly one element for each of the dimensions of a cube.

An administrator can define that one or more dimensions of a cube will be disregarded when addressing cell notes. For example, the same comment is applied to several cells. A dimensions mask is used to do that.

For example, if you mask the TIME dimension, then your cell comment is visible no matter which element of the TIME dimension is chosen. The other dimensions must also be specified.

The function GetCellNoteDimensionMask returns the mask that is currently used on that cube.

Request

<Alea:Document xmlns:Alea="http://www.misag.com">
  <Alea:Request RequestID="001" Class="Cube" Method="GetCellNoteDimensionMask">
    <Alea:Cube Name="SALES" />
  </Alea:Request>
</Alea:Document>

Answer

<Alea:Document xmlns:Alea="http://www.misag.com">
  <Alea:Request RequestID="001">
    <Alea:Return>
      <Alea:Dimension Name="TIME" />
      <Alea:Dimension Name="VERSION" />
      <Alea:Dimension Name="PRODUCT" />
      <Alea:Dimension Name="PROFIT" />
    </Alea:Return>
  </Alea:Request>