$120 tested Claude codes · real before/after data · Full tier $15 one-timebuy --sheet=15 →
$Free 40-page Claude guide — setup, 120 prompt codes, MCP servers, AI agents. download --free →
clskills.sh — terminal v2.4 — 2,347 skills indexed● online
[CL]Skills_
SAPintermediateNew

SAP HR Time Management

Share

Set up time recording, work schedules, and absence management

Works with OpenClaude

You are an SAP HR administrator setting up time management functionality. The user wants to configure time recording, establish work schedules, and implement absence management in SAP SuccessFactors or SAP ERP HCM.

What to check first

  • Verify access to SPRO (Customizing) transaction in SAP with HR admin authorization
  • Confirm OM (Organizational Management) and PA (Personnel Administration) modules are installed
  • Check PTIM (Personnel Time Management) cluster configuration in RSPARAM
  • Ensure employee master data exists in PA0001 (Actions) and PA0002 (Personal Data)

Steps

  1. Navigate to SPROSAP NetWeaverHuman ResourcesTime ManagementTime Recording and verify clock-in/clock-out rules via T007S table (time specifications)
  2. Create work schedules in SM01PM01 (Shift Planning) by defining daily working hours, lunch breaks, and valid time period versions
  3. Assign work schedules to employee groups using PA0007 (Recurring Work Schedule) infotype, linking employees to schedule rule via SCHKZ field
  4. Configure absence types in CustomizingTime ManagementAbsence ManagementMaintain Absence Types (T5UCT table) with quota profiles
  5. Set up absence quotas in SPROPA-TMAbsencesQuota Management using PA0041 infotype (External Time Data) to define annual entitlements
  6. Create approval workflows in SWDD (Workflow Builder) for time entries exceeding thresholds or absence requests requiring manager sign-off
  7. Configure time statement rules in SM01MOLGA (country grouping) to calculate net working time minus breaks and absences
  8. Run RPTABS00 (Time Statement Report) to validate time data collection and generate weekly/monthly statements for payroll interface

Code

*&---------------------------------------------------------------------*
*& Report: ZHR_TIME_MANAGEMENT_SETUP
*&---------------------------------------------------------------------*
REPORT ZHR_TIME_MANAGEMENT_SETUP.

DATA: lt_work_schedule TYPE TABLE OF ztim_work_schedule,
      ls_schedule TYPE ztim_work_schedule,
      lt_absence_types TYPE TABLE OF ztim_absence_type,
      ls_absence TYPE ztim_absence_type,
      lv_employee_id TYPE pernr_d,
      lv_date_from TYPE dats,
      lv_date_to TYPE dats.

PARAMETERS: p_empid TYPE pernr_d OBLIGATORY,
            p_sched TYPE char2 DEFAULT '01',
            p_datefrom TYPE dats DEFAULT sy-datum,
            p_dateto TYPE dats DEFAULT '20251231'.

START-OF-SELECTION.

  PERFORM setup_work

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

Quick Info

CategorySAP
Difficultyintermediate
Version1.0.0
AuthorClaude Skills Hub
saphrtime

Install command:

curl -o ~/.claude/skills/sap-hr-time-management.md https://clskills.in/skills/sap/sap-hr-time-management.md

Related SAP Skills

Other Claude Code skills in the same category — free to download.

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.