Process outbound deliveries with wave management and packing
✓Works with OpenClaudeYou are an SAP EWM (Extended Warehouse Management) specialist. The user wants to process outbound deliveries efficiently using wave management and packing operations.
What to check first
- Verify SAP EWM module is active: Check transaction
SPRO> SAP Customizing > Logistics - Execution > Extended Warehouse Management > master data exists - Run
/SAPAPO/CWLCto ensure Wave and Packing configuration is enabled in your system - Check user authorization for transactions
LY21(Outbound Delivery Monitor) and/SAPAPO/OB02(Wave Creation)
Steps
- Create or retrieve outbound delivery in
LY21(Outbound Delivery Monitor) or check existing deliveries in the system - Execute transaction
/SAPAPO/OB02(Wave Creation Wizard) to group deliveries into waves based on shipping point, route, or delivery priority - Confirm wave in
/SAPAPO/OB03(Wave Overview) and execute wave processing to trigger picking work creation - Navigate to
LY50(Packing) and select the outbound delivery line items requiring packing - In the packing screen, enter packing material/container type using field
VERP_MATand configure hazmat/weight limits if applicable - Execute packing process to generate pack/handling units (HUs) with track/trace barcodes in
HUMOview - Confirm all line items are packed and generate shipping notification via
LY80(Shipping Notification) or integrate viaORDERS05IDOC outbound - Post goods issue in
VL02Nto deduct inventory and trigger billing document creation downstream
Code
*&---------------------------------------------------------------------*
*& Report: SAP EWM Outbound Processing with Wave & Packing
*&---------------------------------------------------------------------*
REPORT z_ewm_outbound_process.
DATA: lt_deliveries TYPE TABLE OF lips,
ls_delivery TYPE lips,
lt_waves TYPE TABLE OF /sapapo/sched_wave,
ls_wave TYPE /sapapo/sched_wave,
lv_wave_id TYPE /sapapo/wave_id,
lv_deliv_num TYPE likp-vbeln,
lv_msg TYPE string.
SELECTION-SCREEN BEGIN OF BLOCK wave_block WITH FRAME TITLE wave_title.
PARAMETERS: p_plant TYPE werks_d OBLIGATORY,
p_sloc TYPE lgort_d,
p_route TYPE route,
p_prio TYPE /sapapo/pick_priority DEFAULT '5'.
SELECTION-SCREEN END OF BLOCK wave_block.
INITIALIZATION.
wave_title = 'Wave & Packing Parameters'.
START-OF-SELECTION.
PERFORM get_deliveries CHANGING lt_deliveries.
IF lt_deliv
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.