Succession and Development
HCM / SuccessFactorsintermediate

Configuring Development Plans and Linking Them to Succession Outcomes

Learn how Development Plan templates are configured in SuccessFactors, how they connect to nomination and readiness data in Succession, and how activities can be tied to Learning to close competency gaps identified during calibration.

Explanation

Succession planning identifies who could move into a critical role, but Development Planning is the mechanism that turns that intent into action. Without a well-configured Development Plan (DP) process, succession nominations become static labels with no visible progress toward readiness, and HR business partners lose the ability to show stakeholders that talent risk is being actively managed. This lesson explains how DP templates are built, how they surface inside the Succession module, and how they connect to Learning activities so that competency gaps found during calibration are closed with measurable actions. Development Plan templates are configured in Provisioning or Admin Center using the same XML-based template framework used for other talent forms, though DP templates have their own object type and their own set of permissions distinct from Performance forms. A DP template typically contains development goals, each with a competency or objective link, target completion date, status, and optional linked learning activities. The competency library used in the DP template should be the same one referenced in the Job Profile Builder and in Performance form ratings, because consistency here is what allows the system to auto-suggest development goals based on a gap between a role's required competency proficiency and an employee's rated proficiency. The connection to Succession happens through the Succession Org Chart and through Talent Search/Talent Pools. When a manager or HR reviews a nomination, SuccessFactors can display the nominee's active Development Plan status alongside readiness level, giving reviewers a fuller picture: is this person 'Ready Now' with an active plan showing progress, or 'Ready in 1-2 years' with no plan at all, which should be a flag for HR follow-up. This visibility is configured through role-based permissions on the DP object and through the succession-specific field sets that display on the org chart nomination card. Learning integration is the piece that gives development plans teeth. When SuccessFactors Learning is provisioned alongside Succession and Development, a development goal can be linked to a specific curriculum, program, or item in Learning. Completion status can sync back to the DP goal, so an employee's progress toward closing a competency gap is reflected automatically rather than requiring manual updates. Where Learning is not implemented, or where a separate LMS is used, organizations often fall back to manual status updates on DP goals, which is functional but weaker for reporting accuracy. Calibration sessions are a key trigger point for development planning. During calibration, when a manager or HR facilitator identifies that a high-potential employee has a specific competency gap relative to a target role, the standard practice is to initiate or update that employee's Development Plan immediately, ideally while the calibration session data (ratings, comments, potential/performance placement) is still fresh. Some implementations configure a workflow trigger so that a completed calibration session with a flagged gap automatically creates a pending DP goal for HR or the manager to finalize, though this requires careful process design to avoid creating noise for employees who were only briefly discussed. Reporting is where the value of this integration becomes visible to leadership. Talent review dashboards and Story Reports (or the equivalent reporting tool depending on the instance's reporting stack) can combine succession readiness fields with DP completion percentages to show, for a given talent pool or critical position, how many successors have an active, on-track development plan versus how many are stalled. This is frequently the single most requested metric by HR leadership during annual talent review cycles because it demonstrates whether succession planning is producing real bench strength or just a static list of names. A common architectural question is whether to model competency gaps as visible to the employee or to keep succession-related development goals private, visible only to HR and the manager. This is a permission design decision, not a technical limitation, and it has real cultural implications: succession nominations are often confidential, so a development goal that clearly signals 'we are grooming you for role X' needs careful field-level permissioning to avoid inadvertently disclosing confidential succession intent through an otherwise transparent development goal description.

Code example

ABAP Code
<!-- Simplified DP template XML fragment showing a development goal linked to a competency and a learning activity reference --><obj-name>DevGoal</obj-name><obj-field id="custom-competency-link" type="competency">  <label>Related Competency</label></obj-field><obj-field id="custom-target-date" type="date">  <label>Target Completion Date</label></obj-field><obj-field id="custom-learning-activity" type="text">  <label>Linked Learning Activity ID</label>  <!-- If Learning is integrated, this stores the curriculum or item ID used to sync completion status back to this goal --></obj-field><obj-field id="custom-status" type="picklist" picklist-id="devGoalStatus">  <label>Status</label>  <!-- Values: Not Started, In Progress, Completed, On Hold --></obj-field>

Real project scenario

A regional bank ran an annual talent review where 40 employees were nominated as successors for 15 critical positions, but the follow-up audit six months later found that only 6 of the 40 had any updated Development Plan activity. Leadership had assumed succession nominations automatically implied development action. The project team reconfigured the process so that any nomination with a readiness level below 'Ready Now' automatically generated a required DP goal referencing the target position's top competency gap, with a nudge email to the manager and a quarterly HR dashboard tracking DP completion percentage per talent pool, which visibly increased manager follow-through in the next review cycle.

Common mistakes

โ€ข Configuring Development Plan templates with a competency library that does not match the one used in Job Profiles or Performance forms, breaking automatic gap suggestions โ€ข Assuming Learning completion automatically updates Development Plan goal status without confirming the integration is actually provisioned and mapped โ€ข Leaving DP goal descriptions fully visible to employees when the underlying reason for the goal is a confidential succession gap, creating unintended disclosure โ€ข Treating succession nomination as the end of the process rather than the trigger for a development action, leading to stale nominee lists โ€ข Not aligning target completion dates on DP goals with the actual succession review cycle, so progress is never checked at the right time

Best practices

โ€ข Use a single, shared competency library across Job Profile Builder, Performance forms, and Development Plan templates โ€ข Trigger or prompt Development Plan creation directly from calibration session outcomes rather than leaving it to manual follow-up โ€ข Apply field-level permissions carefully so DP goal descriptions do not inadvertently expose confidential succession intent โ€ข Where SuccessFactors Learning is provisioned, map DP goals to specific learning items so completion status syncs automatically โ€ข Report on DP completion percentage alongside succession readiness in talent review dashboards to demonstrate real bench-strength progress, not just nomination counts

Interview angle

Interviewers assess whether a candidate understands that succession and development are two sides of one process rather than separate modules. Strong answers describe the competency library alignment across Job Profile, Performance, and Development templates, explain how calibration findings should translate into DP goals, and can discuss the permission tension between transparency for employee development and confidentiality for succession planning. Candidates should also be able to explain, at a high level, how Learning integration keeps DP status current versus manual tracking.