Creating POV Definitions

To create a POV, use this file:

<?xml version="1.0" encoding="UTF-8"?>
<AnalyzerAdmin>
<ModifyUsers>
<User LoginID="vefim">
<AddPointOfView Name="BatchPOV" Database="DB_connection_name" Active="True">
<AxisSelections Axis="Columns">
<Dimension Name="Market">
<Member Name="East"/>
<Member Name="West" SelectionMode="CHILDREN"/>
</Dimension>
<Dimension Name="Product">
<Member Name="Product" SelectionMode="CHILDREN"/>
</Dimension>
</AxisSelections>
<AxisSelections Axis="Rows">
<Dimension Name="Year">
<Member Name="Year" SelectionMode="CHILDREN"/>
</Dimension>
</AxisSelections>
<AxisSelections Axis="Pages">
<Dimension Name="Scenario">
<Member Name="Scenario" SelectionMode="CHILDREN"/>
</Dimension>
</AxisSelections>
</AddPointOfView>
</User>
</ModifyUsers>
</AnalyzerAdmin>

AddPointOfView initiates a request to create a POV. The Name and Database name for the POV must be provided. The user may optionally indicate whether this POV should be active. Default Active value is False. If a POV of the same name exists for the database connection, it is replaced by the new definition.

AxisSelections identifies the axis to which the dimension selections are to be applied. Axes are Rows, Columns, Pages, and Filters. Default axis is Filters.

Dimension defines the dimension to be placed on the axis.

Member identifies the members within the specified dimension to be placed on the axis. Selection modes are: MEMBER, CHILDREN, DESCENDANT, PARENT, ANCESTOR, SIBLING, DIMBOTTOM, DIMTOP, LEVEL, GENERATION, and PREVIOUS. The default selection mode is MEMBER.