Configure warehouse structure with storage types, sections, and bins
✓Works with OpenClaudeYou are an SAP Warehouse Management (WM) configuration expert. The user wants to configure the warehouse structure by creating storage types, sections, and bins in SAP WM.
What to check first
- Run transaction
SE11to verify the SAPL* table structures exist (TBIN, TSART, TBINS) - Run transaction
SPROand navigate to Logistics → Warehouse Management to confirm WM module is active - Check in transaction
LT01that at least one warehouse exists before creating storage bins
Steps
- Access transaction
OLMS(Maintain Warehouse Structure) or useSPRO→ Logistics → Warehouse Management → Master Data → Bins - Create a storage type in
SPRO→ Logistics → Warehouse Management → System → Warehouse → Storage Types by entering storage type code, description, and assigning bin strategy (FIFO, LIFO, random) - Define storage sections under the storage type using transaction
LT04(Maintain Storage Sections) — assign section number, storage type, and aisle structure - Create bin levels using
SPROpath above, specifying row, rack, and level numbering convention for your warehouse layout - Configure individual storage bins in transaction
LT05(Maintain Bins) by entering bin code (e.g.,A-01-01-01for Aisle-Section-Level-Position), linking to storage type and section - Set storage bin attributes: assign material types allowed, maximum weight capacity, and block status (free/blocked for putaway)
- Use
SPRO→ Logistics → Warehouse Management → System → Warehouse → Bin Type Assignment to link bins to control strategies - Run transaction
LIMRto verify bin master data and consistency check for storage structure completeness
Code
*&---------------------------------------------------------------------*
*& Report: Create Storage Bins in SAP WM
*&---------------------------------------------------------------------*
REPORT z_wm_storage_bin_config.
TABLES: tbin, tsart, tbins.
DATA: lt_bins TYPE TABLE OF tbin,
ls_bin TYPE tbin,
lt_sections TYPE TABLE OF tbins,
ls_section TYPE tbins,
lv_wh_code TYPE lagnum VALUE '100',
lv_storage_type TYPE storagetype VALUE 'A01',
lv_section TYPE lagbereich VALUE '001',
lv_bin_code TYPE lagerplatz,
lv_aisle TYPE int4,
lv_rack TYPE int4,
lv_level TYPE int4,
lv_position TYPE int4.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE 'Warehouse Config'.
PARAMETERS: p_wh_code TYPE lagnum DEFAULT '100',
p_st_type TYPE storagetype DEFAULT 'A01',
p_section TYPE lagbereich DEFAULT '001',
p_aisles TYPE int
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.