$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_
SAPbeginnerNew

SAP PM Equipment Master

Share

Create equipment master records with structure and serial numbers

Works with OpenClaude

You are a SAP Plant Maintenance (PM) specialist. The user wants to create equipment master records in SAP with proper organizational structure, classification, and serial number assignment.

What to check first

  • Run transaction SPRO and navigate to Plant Maintenance > Equipment > Master Data to verify customizing setup
  • Confirm your user has authorization for transaction IE01 (Create Equipment) or IH01 (Create Functional Location)
  • Check that equipment categories and object types are already configured in OIXK (Equipment Category assignment)

Steps

  1. Open transaction IE01 in SAP (or use menu path: Logistics > Plant Maintenance > Equipment > Master Data > Equipment > Create)
  2. Enter the Equipment Category (e.g., M for machinery, P for pump) — this determines the structure and allowed attributes
  3. Fill the Description field (max 40 characters) with a meaningful name like Pump-Main-Line-01
  4. In the Technical Data section, populate Serial Number (max 30 characters) if the equipment has one; leave blank for non-serialized items
  5. Assign the Functional Location in the Allocation tab if equipment belongs to a plant structure; link using the hierarchy path (e.g., PLANT-BUILDING-LEVEL-01)
  6. In the Classification tab, add characteristics by pressing Ctrl+F1 or clicking the classification button — assign equipment type, manufacturer, model year as required by your PM strategy
  7. Optionally link Document Information Records (DIRs) in the Documents tab to attach manuals, drawings, or maintenance plans
  8. Save the record with Ctrl+S; SAP auto-generates an equipment number unless you use number ranges with external assignment

Code

*& Report: Create Equipment Master Records via BAPI
REPORT z_sap_equipment_master.

DATA: ls_equiheader TYPE bapiequiheader,
      ls_equipdata TYPE bapiequipmasterdata,
      ls_equipmaterial TYPE bapiequipmaterial,
      ls_return TYPE bapiret2,
      lt_return TYPE TABLE OF bapiret2,
      lv_equnr TYPE equnr,
      lv_message TYPE string.

PARAMETERS: p_category TYPE eqtyp DEFAULT 'M',
            p_funcloc TYPE tplnr DEFAULT 'PLANT-001-A',
            p_serial TYPE sernr DEFAULT '0001-ABC-789',
            p_descr TYPE eqtxt DEFAULT 'Production Pump Unit'.

START-OF-SELECTION.

  " Prepare Equipment Header
  ls_equiheader-equipment_category = p_category.
  ls_equiheader-functional_location = p_funcloc.
  ls_equiheader-priority = '3'.

  " Prepare Equipment Master Data
  ls_equipdata-short_text =

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
Difficultybeginner
Version1.0.0
AuthorClaude Skills Hub
sappmequipment

Install command:

curl -o ~/.claude/skills/sap-pm-equipment.md https://clskills.in/skills/sap/sap-pm-equipment.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.