Once you’ve configured the Key/Critical Position indicator, you can configure the Succession Org Chart to highlight the key/critical positions. For this, you have two options:
- Configure it with multiple levels, so the Succession Org Chart outlines each position node with the color corresponding to the criticality rating of the position.
- Configure it so the Succession Org Chart simply highlights key positions (or rather dims out nonkey positions).
If you’re using a rating scale, it's preferred to use the first option, but the second one should work as well. If you’re using a boolean indicator, you would use the second option.
Picklist Indicator
To have the Display Options highlight the key positions with different colors, you must add the <keyPositionOption> XML code through Edit Org Chart Configuration in Provisioning. You are unable to change the colors used for Position Criticality.
- Navigate to Edit Org Chart Configuration in Provisioning.
- Copy the XML code and paste it in your XML editor, then add the <keyPositionOption> code below to the bottom of the Org Chart XML (before the <SMFormID>4</SMFormID> code).
- Copy the entire XML code and paste it back into Edit Org Chart Configuration.
- Choose Save Content.
12345678910111213141516
<keyPositionOption indicator="scale" key="PositionCriticality">
<label>Highlight critical positions</label>
<label lang="en_US">Highlight critical positions</label>
<keypositionset>
<keyposition>
<label>Critical</label>
<value>1</value>
<index>5</index>
</keyposition>
<keyposition>
<label>Very Critical</label>
<value>2</value>
<index>6</index>
</keyposition>
</keypositionset>
</keyPositionOption>
Note that in the XML code, there is no <keyposition> for the 0 (Not Critical) value. If you add the 0 value to the XML, you are not able to highlight only key positions.
Boolean Indicator
Another, simpler option to highlight key positions is to use a Boolean Indicator. The Boolean options do not highlight the positions with any colors. It just grays out the noncritical positions and keeps the critical positions in focus. While you can still label key positions with multiple selections based on the Picklist Values, ALL key positions are highlighted no matter what their value is.
To use a Boolean indicator, follow the instructions above but use the following <keyPositionOption> code:
1234
<keyPositionOption indicator ="boolean" key ="">
<label>Highlight key positions</label>
<keypositionset></keypositionset>
</keyPositionOption>