Set up SuccessFactors Learning with curricula and assignments
✓Works with OpenClaudeYou are a SAP SuccessFactors Learning administrator. The user wants to set up SuccessFactors Learning by creating curricula, configuring learning paths, and assigning courses to users.
What to check first
- Verify you have admin access to SuccessFactors Learning module (check in Admin Center > Feature Access)
- Confirm Learning is enabled in your SuccessFactors instance by navigating to Admin Center > System Configuration > Feature Status
- Check that at least one learning content source is configured (Admin Center > Learning > Content Sources)
- Verify user roles: ensure you have "Learning Administrator" or "Learning Manager" role assigned
Steps
- Create a curriculum by navigating to Admin Center > Learning > Curricula and click "New Curriculum," set the curriculum name, description, and effective dates
- Define curriculum learning objectives in the Details tab by adding competencies or skill mappings the curriculum will develop
- Create learning paths within the curriculum by adding courses in the "Learning Path" section, specifying sequence and completion order
- Configure course prerequisites by dragging courses into dependency order or setting explicit prerequisite rules in each course assignment
- Set proficiency levels and competency mappings for each course module using the "Assessment" tab to track mastery
- Create user assignments by going to Admin Center > Learning > Assignments and clicking "New Assignment"
- Select target users or user groups, assign the curriculum/learning path, set start date and completion deadline
- Enable notifications in the assignment settings so learners receive reminders via email about their learning tasks
Code
// SAP SuccessFactors Learning API - Curriculum and Assignment Setup
// Using OData v4 endpoints for SuccessFactors Learning
const axios = require('axios');
const sfConfig = {
baseURL: 'https://api.sfsf.com/learning/odata/v4',
headers: {
'Authorization': `Bearer ${process.env.SF_TOKEN}`,
'Content-Type': 'application/json',
'Accept': 'application/json'
}
};
const sfApi = axios.create(sfConfig);
// Create a curriculum
async function createCurriculum(curriculumData) {
try {
const payload = {
curriculumName: curriculumData.name,
description: curriculumData.description,
owner: curriculumData.owner,
startDate: curriculumData.startDate,
endDate: curriculumData.endDate,
status: 'ACTIVE',
version: 1
};
const response = await sfApi.post('/Curriculum', payload);
console.log('Curriculum created:', response.data.curriculumId);
return response.data.curriculumId;
} catch (error) {
console.error('Error creating curriculum:', error.response?.data || error.message);
}
}
// Add courses to curriculum learning path
async function addCourseToCurriculum(curriculum
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.