The Matrix Grid Report XML is found in Provisioning and controls the icons displayed on both Matrix Grid Reports. You can also select the icons used on these reports in the Admin Center as discussed in the Configuring Icons in the Admin Center lesson.
Two important facts to note:
- Both the Performance & Potential matrix and How Vs. What matrix share the same configuration.
- You must use the Matrix Grid Report XML as well as Admin Center to configure the icon for Retirement Eligibility.
The matrix classifier XML in Provisioning is used to set up the icons used to represent different data attributes on the matrix grid reports. If an element, like Risk of Loss, is in the data model and already in the matrix classifier XML, then the element and its associated icons can be added to the Matrix Grid Reports via Admin Center.
If an element is not yet available in the Admin Center, then you must add it to the XML. You can edit the XML portion of setting up the matrix grid icons directly in Provisioning. It is not exported and imported. The actual icon configuration is then done via the Admin Center after you've edited the XML (see the Configuring Icons in the Admin Center lesson.)
To edit the Matrix Grid XML, navigate to Edit Matrix Classifier Configuration in Provisioning.
A sample code for the element Risk of Loss is shown below:
123456789101112131415161718192021222324</Category>
<Category id="riskOfLoss" name="Risk of Loss">
<Level id="riskOfLoss01">
<ExactEvaluator value="7"/>
<Icon alt="RoL-Low" title="Low" url="/ui/sm/img/org_icons/sap_ui5_icon_RiskOfLoss01_low.png">
<label lang="de_DE" value="Gering"/>
<label lang="en_US" value="Low"/>
</Icon>
</Level>
<Level id="riskOfLoss02">
<ExactEvaluator value="8"/>
<Icon alt="RoL-Medium" title="Medium" url="/ui/sm/img/org_icons/sap_ui5_icon_RiskOfLoss01_medium.png">
<label lang="de_DE" value="Mittel"/>
<label lang="en_US" value="Medium"/>
</Icon>
</Level>
<Level id="riskOfLoss03">
<ExactEvaluator value="9"/>
<Icon alt="RoL-High" title="High" url="/ui/sm/img/org_icons/sap_ui5_icon_RiskOfLoss01_high.png">
<label lang="de_DE" value="Hoch"/>
<label lang="en_US" value="High"/>
</Icon>
</Level>
</Category>
The following attribute tags are used in the Matrix Classifier XML:
Attribute Tag | Description |
---|---|
Category | Defines a data field for inclusion in the grid. Uses the data field key as the identifier. |
Name | Defines how the category is listed in the grid legend and display panel. |
Level | Defines the value for the data field. Must be unique within the category. For a non-Boolean, you can choose anything you’d like as long as it’s unique within the category. |
ExactEvaluator Value | Either a picklist option ID (for string or picklist fields) or true/false (for Boolean fields). |
Icon | Defines the icon title and URL. |
Label | Optional, locale-specific values that supersede the category names and icon titles. |
Note
The category male is used if you only need Male and Female as gender values in Talent Search and matrix grid reports. The category gender is used after you upgrade to include three more values – Undeclared, Unknown, and Others through Upgrade Center → Optional Upgrades → Enhancement to Gender Values – Inclusion of Additional Gender Values.