Why Performance and Goals Exists: Business Purpose and Core Building Blocks
Introduces the business rationale for the Performance and Goals module in SAP SuccessFactors and explains the core objects consultants work with: goal plans, goals, performance form templates, rating scales, and route maps.
Explanation
Performance and Goals is one of the original talent management capabilities in SAP SuccessFactors, sitting alongside Employee Central in most cloud HCM landscapes. Its business purpose is to let organizations cascade strategic objectives down to individual employees (goal management) and then formally evaluate how employees performed against those objectives and competencies over a review period (performance management). This matters commercially because compensation decisions, succession planning, and calibration exercises in many customers are directly fed by performance ratings produced in this module, so getting the data model and process right has downstream effects on pay and talent decisions. There are two closely related but distinct sub-modules. Goal Management is where employees, managers, and sometimes HR define, cascade, and track goals across a goal plan for a given period (commonly annual, but sometimes semi-annual). Goals can be created manually, imported from a library, or cascaded from a parent goal (aligning individual goals to team or company objectives). Performance Management uses performance form templates to structure a review: sections might include goal ratings, competency ratings, overall summary comments, and a final rating. The performance form often pulls goals directly from the employee's goal plan for that same period so raters do not have to re-enter objectives. The key configuration objects a consultant must understand at a conceptual level are: the goal plan template, which defines the structure of a goal plan (categories, fields available per goal, whether cascading and alignment are enabled, and which rating/weighting scheme applies); the performance form template, which defines the sections, ratings, weightings, route map, and permissions for a specific review cycle; the rating scale, a reusable object defining the numeric or descriptive scale (for example a 1-5 scale with labels) used to rate goals, competencies, and overall performance; and the route map, which defines the sequence of steps a form travels through (for example self-assessment, manager assessment, second-level approval, HR review) and who can act at each step. At runtime, when a performance cycle launches, forms are typically mass-created for a population of employees based on the performance form template, and each form is routed according to the assigned route map. Employees and managers interact with the form through the Performance Management module's user interface, completing sections in the order the route map allows. Once all required steps are complete, the form is typically routed to a final state (often 'Complete' or similar) and the resulting ratings can be consumed by other modules, most commonly Compensation, for merit and bonus calculations, and by Calibration if the customer uses it. A critical point for beginners: Performance and Goals configuration and administration for most customers happens through Provisioning and Admin Center-managed template setup, not through a general-purpose configuration engine like SPRO in on-premise SAP HCM. Consultants should not assume experience from ECC Personnel Development or Objective Setting and Appraisals (PA-PD) transfers directly, because SuccessFactors Performance and Goals is a distinct cloud product with its own XML-based templates and its own permission model layered on Role-Based Permissions (RBP).
Code example
<!-- Simplified, illustrative fragment of a goal plan template structure. --><!-- This is a conceptual example only, not a literal product schema. --><goal-plan-template id="AnnualGoals2024"> <field-definition id="goalName" type="text" required="true"/> <field-definition id="goalDescription" type="textarea"/> <field-definition id="metric" type="text"/> <field-definition id="weight" type="number"/> <rating-scale-ref id="5PointGoalScale"/> <category name="Strategic Objectives"/> <category name="Development Goals"/> <cascading enabled="true"/> <alignment enabled="true"/></goal-plan-template>Real project scenario
A mid-size manufacturing customer is rolling out SuccessFactors Employee Central plus Performance and Goals for the first time. During discovery, the HR director asks for goals to cascade from company objectives to department heads to individual contributors, and for the annual review form to automatically pull in the employee's rated goals plus three competencies. The consultant's first task is to explain, in a workshop, the difference between a goal plan (where goals live and are tracked year-round) and a performance form (a point-in-time review document that references those goals), because the customer initially assumed goals and performance ratings were the same object.
Common mistakes
โข Assuming goal plans and performance forms are the same object; goals live independently and are only referenced by forms. โข Not clarifying with the customer whether cascading and alignment are actually required, which affects goal plan template design complexity. โข Treating SuccessFactors Performance and Goals as equivalent to ECC Objective Setting and Appraisals; the underlying architecture, permission model, and configuration tooling are different. โข Underestimating how much the rating scale choice affects downstream compensation guideline calculations. โข Forgetting that route map design determines who can edit which section at which step, which is often the root cause of 'my manager can't see the form' issues.
Best practices
โข Always confirm with the customer whether goal ratings need to feed the performance form before finalizing the goal plan template's rating scale. โข Keep the number of goal categories and required fields minimal for a first release to reduce user confusion and support tickets. โข Document the intended route map steps in plain business language before building XML/template configuration. โข Validate that the rating scale used in Goals aligns with the rating scale used in the Performance form to avoid confusing scale mismatches for end users. โข Use a pilot population before full mass-creation of forms to validate template behavior end to end.
Interview angle
Interviewers often ask candidates to explain the relationship between goal plans and performance forms, and to justify when cascading/alignment should be enabled versus kept simple. A strong answer distinguishes the always-on goal tracking object from the periodic review document, and ties the answer to a business outcome (e.g., visibility of strategic alignment) rather than just describing screens.