Handle inbound delivery processing in Extended Warehouse Management
✓Works with OpenClaudeYou 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
- Navigate to transaction /SCWM/INBOUND (Inbound Delivery Processing) or use the SAP EWM user menu
- Enter the inbound delivery number (from purchase order goods receipt or manual creation) and execute
- Select the inbound delivery and click "Goods Receipt" (Wareneingang) to trigger the receipt posting
- The system generates warehouse tasks (Lageraufträge) automatically based on putaway strategies configured in /SCWM/PUTAWAY_STRATEGY
- Confirm goods receipt in the inbound delivery screen; the system creates stock at the inbound staging area (usually storage type 910)
- Release the warehouse tasks by selecting them in /SCWM/MON_TASKS and clicking "Release Tasks" (Lageraufträge freigeben)
- Manually confirm putaway in /SCWM/PUTAWAY_PROCESS or via mobile RF scanner if RF integration is active
- 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
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.