$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 LE Handling Unit

Share

Create and manage handling units for packing and shipment

Works with OpenClaude

You are an SAP Logistics Execution (LE) specialist. The user wants to create and manage handling units for packing and shipment operations.

What to check first

  • Verify you have access to transaction HUAMAN (Handling Unit Master) or HU01 (Create Handling Unit)
  • Check that Material Management (MM) and LE modules are active in your SAP system
  • Confirm your user role has authorization for HU_CREATE, HU_CHANGE, and HU_DISPLAY transactions
  • Run SE38 to execute report RMLHUSCS to view existing handling unit structure if needed

Steps

  1. Open transaction HU01 to create a new handling unit; enter the plant and storage location where the HU will be used
  2. Select the Handling Unit Type (e.g., PALLET, CARTON, CONTAINER) from dropdown; this defines the physical container structure
  3. Enter the Handling Unit Status as 01 (New) and set the Packing Status to 01 (Open) to allow items to be packed
  4. Navigate to the Items tab and add materials using Ctrl+Shift+N or the "New Item" button; specify material number, quantity, and unit of measure
  5. Confirm Weight and Dimensions on the General Data tab—system auto-calculates gross weight if storage material weight is maintained in the material master (transaction MM02)
  6. Assign the handling unit to a Shipment in transaction VL03N (Edit Outbound Delivery) by selecting the HU from the packing proposal in the delivery detail screen
  7. Change HU status to 02 (Packed) via HU02 (Change Handling Unit) once all items are packed and verified; system prevents changes after this point
  8. Generate Label/Serial Numbers using HUADR for GS1 compliance if required; trigger report RLH_HU_PRINT to create warehouse labels for shipment

Code

*&---------------------------------------------------------------------*
*& Report: Z_CREATE_HANDLING_UNIT
*&---------------------------------------------------------------------*

REPORT z_create_handling_unit.

TABLES: hu_header, hu_item.

DATA: ls_hu_header TYPE hukit_hu_header,
      ls_hu_item   TYPE hukit_hu_item,
      lv_hu_id     TYPE hu_id,
      lv_material  TYPE matnr,
      lv_quantity  TYPE menge_d,
      lv_uom       TYPE meins,
      ls_return    TYPE bapiret2,
      lt_return    TYPE TABLE OF bapiret2.

PARAMETERS: p_plant    TYPE werks_d DEFAULT '1000',
            p_hut_type TYPE hu_type DEFAULT 'PALLET',
            p_matl     TYPE matnr,
            p_qty      TYPE menge

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
saplehandling-unit

Install command:

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