$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 EWM Inbound Process

Share

Handle inbound delivery processing in Extended Warehouse Management

Works with OpenClaude

You are a SAP Extended Warehouse Management (EWM) specialist. The user wants to process inbound deliveries in SAP EWM, including goods receipt, putaway, and inbound delivery confirmation.

What to check first

  • Verify EWM is activated in your SAP system via transaction SPRO → SAP Customizing Implementation Guide → Extended Warehouse Management
  • Check that inbound delivery documents exist in transaction /SCWM/INBOUND or via the inbound delivery list (/SCWM/MON_INBOUND)
  • Confirm warehouse number and storage types are configured in /SCWM/CONF → Basic Settings → Warehouses

Steps

  1. Navigate to transaction /SCWM/INBOUND (Inbound Delivery Processing) or use the SAP EWM user menu
  2. Enter the inbound delivery number (from purchase order goods receipt or manual creation) and execute
  3. Select the inbound delivery and click "Goods Receipt" (Wareneingang) to trigger the receipt posting
  4. The system generates warehouse tasks (Lageraufträge) automatically based on putaway strategies configured in /SCWM/PUTAWAY_STRATEGY
  5. Confirm goods receipt in the inbound delivery screen; the system creates stock at the inbound staging area (usually storage type 910)
  6. Release the warehouse tasks by selecting them in /SCWM/MON_TASKS and clicking "Release Tasks" (Lageraufträge freigeben)
  7. Manually confirm putaway in /SCWM/PUTAWAY_PROCESS or via mobile RF scanner if RF integration is active
  8. Complete the inbound delivery confirmation in /SCWM/INBOUND with status "Completed" (Abgeschlossen)

Code

*&---------------------------------------------------------------------*
*& Report: SAP EWM Inbound Delivery Processing
*&---------------------------------------------------------------------*

REPORT zewm_inbound_process.

PARAMETERS: p_inbound TYPE /scwm/de_inbound_no.

TYPES: BEGIN OF ty_inbound,
  inbound_no TYPE /scwm/de_inbound_no,
  status TYPE /scwm/de_inbound_status,
  warehouse TYPE /scwm/de_warehouse,
  receipt_date TYPE sy-datum,
END OF ty_inbound.

DATA: ls_inbound TYPE ty_inbound,
      lt_inbound TYPE TABLE OF ty_inbound,
      lv_msg TYPE string.

START-OF-SELECTION.

* Step 1: Read inbound delivery data
  SELECT inbound_no, status, warehouse, creation_date
    FROM /scwm/inbound
    INTO TABLE lt_inbound
    WHERE inbound_no = p_inbound.

  IF sy-subrc NE 0.
    MESSAGE 'Inbound delivery not found' TYPE 'E'.
    STOP.
  ENDIF.

  ls_inbound = lt_inbound

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
sapewminbound

Install command:

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