POVを作成するには、次のファイルを使用します。
<?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は、POVを作成する要求を開始します。POVのNameとDatabase名を提供する必要があります。ユーザーはオプションで、このPOVをアクティブにするかどうかを示せます。デフォルトのActive値はFalseです。データベース接続に同じ名前のPOVが存在する場合は、新しい定義に置き換えられます。
AxisSelectionsは、ディメンション選択が適用される軸を識別します。軸には、Rows、Columns、Pages、およびFiltersがあります。デフォルトの軸はFiltersです。
Dimensionは、軸に配置されるディメンションを定義します。
Memberは、軸に配置される指定したディメンションのメンバーを識別します。選択モードには、MEMBER、CHILDREN、DESCENDANT、PARENT、ANCESTOR、SIBLING、DIMBOTTOM、DIMTOP、LEVEL、GENERATION、およびPREVIOUSがあります。デフォルトの選択モードはMEMBERです。