Configure performance reviews, goal plans, and calibration
✓Works with OpenClaudeYou are a SAP SuccessFactors administrator configuring performance management processes. The user wants to set up performance reviews, goal plans, and calibration workflows in SuccessFactors.
What to check first
- Verify your SuccessFactors instance has Performance & Goals module enabled (check Admin Center > Feature Settings)
- Confirm user roles include "Performance & Goals Administrator" permissions
- Check that your fiscal year and review cycle dates are configured in Admin Center > Company Settings
Steps
- Navigate to Admin Center > Performance & Goals > Goal Plans and create a new goal plan template with name, description, and effective date
- Define goal categories (e.g., "Organizational", "Competency", "Individual") by clicking Add Category and setting weights that total 100%
- Create performance rating scales in Admin Center > Performance & Goals > Rating Scales, specifying numeric values (1-5) and performance labels ("Exceeds", "Meets", "Below")
- Set up review forms in Performance & Goals > Review Forms, adding sections for goals, competencies, and calibration comments with required/optional field toggles
- Configure review templates by accessing Performance & Goals > Review Templates and assigning the rating scale, review form, and competency model to each template
- Establish calibration rules in Admin Center > Performance & Goals > Calibration Settings, setting forced distribution percentages per rating (e.g., 20% Exceeds, 60% Meets, 20% Below)
- Create performance review cycles in Performance & Goals > Manage Reviews, selecting start/end dates, participant roles (manager, reviewer, employee), and submission deadlines
- Map users to review cycles and assign them as employees, managers, or calibration participants using the bulk user assignment feature or individual role assignment
- Enable goal planning by assigning the goal plan template to employees and setting goal submission and review deadlines in the review cycle settings
Code
<!-- SAP SuccessFactors OData API call to create a performance review cycle -->
<script>
const sfUrl = "https://your-instance.successfactors.com/odata/v2";
const auth = "Basic " + btoa("username:password");
// Create Performance Review Cycle
async function createPerformanceReviewCycle() {
const cyclePayload = {
name: "FY2025 Mid-Year Review",
description: "Mid-year performance review cycle for all employees",
startDate: "/Date(1704067200000)/", // January 1, 2024
endDate: "/Date(1735689600000)/", // January 1, 2025
reviewFormId: "reviewFormId123",
ratingScaleId: "ratingScale001",
competencyModelId: "competencyModel001",
calibrationEnabled: true,
reviewCycleType: "ONE_TIME"
};
const response = await fetch(`${sfUrl}/PerformanceReviewCycle`, {
method: "POST",
headers: {
"
Note: this example was truncated in the source. See the GitHub repo for the latest full version.
Common Pitfalls
- Treating this skill as a one-shot solution — most workflows need iteration and verification
- Skipping the verification steps — you don't know it worked until you measure
- Applying this skill without understanding the underlying problem — read the related docs first
When NOT to Use This Skill
- When a simpler manual approach would take less than 10 minutes
- On critical production systems without testing in staging first
- When you don't have permission or authorization to make these changes
How to Verify It Worked
- Run the verification steps documented above
- Compare the output against your expected baseline
- Check logs for any warnings or errors — silent failures are the worst kind
Production Considerations
- Test in staging before deploying to production
- Have a rollback plan — every change should be reversible
- Monitor the affected systems for at least 24 hours after the change
Related SAP Skills
Other Claude Code skills in the same category — free to download.
ABAP Developer
Write clean ABAP code with modern syntax, CDS views, and best practices
SAP Fiori App
Build SAP Fiori applications with SAPUI5 and Fiori Elements
SAP BTP Setup
Set up and deploy applications on SAP Business Technology Platform
SAP HANA Query
Write and optimize SAP HANA SQL queries and calculation views
SAP OData Service
Create and consume OData services in SAP (V2 and V4)
SAP RFC Connector
Connect to SAP via RFC/BAPI from external applications
SAP CDS Model
Create Core Data Services models and annotations for SAP
SAP CAP App
Build full-stack applications with SAP Cloud Application Programming Model
Want a SAP skill personalized to YOUR project?
This is a generic skill that works for everyone. Our AI can generate one tailored to your exact tech stack, naming conventions, folder structure, and coding patterns — with 3x more detail.