The Succession Org Chart layout and options are configured using the Org Chart XML in Provisioning. Some of the features that can be configured for the SOC are:
- Readiness Rating Scale
- Colors for the Readiness Level and Bench Strength
- SOC Talent Icons
These features can be configured in the Succession Management area of Provisioning, under Edit Org Chart Configuration.
All successor nominations require a readiness rating to determine how far they are from being ready to fill the role in question.
The readiness rating is defined in both the Org Chart XML (in Provisioning) and using the Admin Center Rating Scale Designer. The defined rating scale must match in both locations or you may have inconsistent readiness results in the various succession planning tools.
Note
Readiness and Bench Strength picklists must be in sync and exactly equal, or these features will not match on the SOC. Even if Bench Strength is not currently being used it’s recommended the picklists are set up during implementation anyway to ensure future success, should you decide to start displaying Bench Strength in the Succession Org Chart.
To define the readiness level:
- In Provisioning, select your company instance.
- Navigate to Edit Org Chart Configuration under Succession Management.
- Unlike other XML pages like the Data Model, you don’t have an export/import option for the Org Chart XML. The XML code is listed on the page, but you don’t want to make changes directly in Provisioning. You should make changes in an XML editor.
- Copy the entire Org Chart XML code. "Select All" using a right-click or CTRL-A, and then "Copy" the code using a right-click or CTRL-C.
- Open your XML editor and paste the XML into a new document using a right-click or CTRL-V. Be careful that the very first line (<?xml version="1.0" encoding="UTF-8"?>) isn’t duplicated.
- Save the XML document with a Version 1 so you can return to it if necessary.
- Make your changes to the XML code.
- Save your XML Document with a Version 2.
- Copy the whole XML code from the Editor.
- Return to Edit Org Chart Configuration in Provisioning.
- Paste the new code in its entirety to the Org Chart XML page (CTRL-A and CTRL-V are ways to paste the code).
- Choose Save Content to save the new code. You should receive a green confirmation. If you receive a red message, there’s a problem with the code.

The <gradientOption> and <gradient> tags are used to create the rating scale. A sample code is shown below, for a Readiness Rating Scale of 3 levels. You can customize the number of levels and labels.
12345678910111213141516171819202122232425<gradientOption index="3" key="readiness">
<type>readiness</type>
<label>Readiness</label>
<label lang="de_DE">Fertigkeit</label>
<gradientset>
<gradient>
<label>3-5 years</label>
<label lang="de_DE">3-5 Jahre</label>
<value>1.0</value>
<index>3</index>
</gradient>
<gradient>
<label>1-2 years</label>
<label lang="de_DE">1-2 Jahre</label>
<value>2.0</value>
<index>2</index>
</gradient>
<gradient>
<label>Ready Now</label>
<label lang="de_DE">Jetzt Bereit</label>
<value>3.0</value>
<index>1</index>
</gradient>
</gradientset>
</gradientOption>Other options that must be defined for the Readiness Rating:
- Label: The label for the readiness rating. Localized labels can also be included.
- Value: The Picklist option ID. The lowest number is the least ready, and the highest number is the most ready. The bench strength calculation and other features expect that the highest number equals the most ready.
- <icon>Index: Indicates which color from the readiness color scheme is used for that rating. (The <gradientOption> index lists the order of your <gradientOption> elements).
To create the Readiness Rating Scale:
- To navigate to Rating Scales, use Action Search.
- Choose +Create New Rating Scale.
- Name the Rating Scale as Readiness.
- Choose Build your own.
- Enter the following scores and labels:
Score Label 1 3-5 Years 2 1-2 Years 3 Ready Now - Choose Save.


