SAP tableObjectT320ModuleWM_EWM

T320 table — Plant Storage Location to Warehouse Number Assignment

T320 is the classic WM customizing table that assigns a plant and storage location combination to a warehouse number. It determines whether a goods movement posted against that plant and storage location triggers transfer requirements and transfer orders in Warehouse Management. It is only relevant for classic embedded WM, not for decentralized EWM.

T320 links a plant and storage location to a warehouse number in classic SAP Warehouse Management, and its content decides whether inventory postings in that storage location flow into WM processing. The page covers the fields that make up the assignment, the joins used to trace it against warehouse and stock tables, and the recurring mistake of expecting the assignment to retroactively fix stock already posted under a different setup.

Reviewed by an ERPClimb SAP consultant on 15 Sept 2026· 1,011 words

What it stores

One row in T320 represents a single plant plus storage location combination and the warehouse number it is bound to. This is the pivot point of classic WM configuration: it is the record that tells the system whether a goods movement posted against a given plant and storage location must generate a transfer requirement and eventually a transfer order in a specific warehouse number. Without an entry, movements in that storage location are treated as ordinary inventory management postings with no WM relevance. With an entry, the storage location becomes WM-managed and every relevant movement type is expected to create WM follow-on documents. The table is maintained through customizing rather than direct master data transactions, and changes to it have structural consequences for open documents and existing stock.

Key fields

  • MANDT - client
  • WERKS - plant that is being linked to a warehouse number
  • LGORT - storage location within that plant
  • LGNUM - warehouse number the plant and storage location combination is assigned to; blank or missing means the storage location is not WM-managed

How it joins the data model

  • T320-LGNUM = T300-LGNUM to pull the warehouse number's general settings and number range
  • T320-LGNUM = T301-LGNUM to list which storage types exist inside the warehouse number the storage location has been assigned to
  • T320-LGNUM = LQUA-LGNUM to find quant stock physically sitting in the warehouse number linked to the plant and storage location
  • T320-LGNUM = LAGP-LGNUM to check storage bins defined for that same warehouse number
  • T320-WERKS and T320-LGORT correspond to the plant and storage location fields carried on material master and inventory management tables, joined outside this list via the plant and storage location key alone, not via warehouse number

How to read it safely

T320 is client-dependent and small, typically a few dozen to a few hundred rows even in a large landscape, since it is a customizing table maintained by configuration rather than transaction volume. Restrict by WERKS and LGORT when the question is whether a specific storage location is WM-managed. Restrict by LGNUM when the question is which plants and storage locations feed a given warehouse number. A full table read is harmless here; the risk is not performance, it is reading it in isolation and concluding the assignment is currently effective without checking whether it was changed after stock was already posted.

How to prove it in the data

Symptom: goods movements posted in plant 1000, storage location 0001 are not generating transfer orders even though WM is supposedly active for that location. Select T320 where WERKS = 1000 and LGORT = 0001. If no row exists, or LGNUM is blank, the storage location has never been assigned to a warehouse number and WM processing was never going to trigger, regardless of movement type configuration. If a row exists with a populated LGNUM, the problem lies elsewhere, most likely in movement type or storage type search strategy settings, not in the plant and storage location assignment.

ECC vs S/4HANA

T320 still exists in S/4HANA and still governs classic embedded Warehouse Management, which continues to be shipped for backward compatibility. The table structure has not changed. It plays no role in decentralized EWM, where warehouse number assignment and structure are defined and maintained inside EWM-specific customizing rather than through this table. Projects doing a WM to EWM migration typically decommission or freeze T320 assignments for the storage locations that move to EWM rather than reusing them.

Common pitfalls

  • Assuming a change to the T320 assignment retroactively reorganizes stock already posted under the previous configuration; existing quant and bin records do not move themselves, they have to be migrated or corrected separately
  • Reading a populated LGNUM as proof that storage bins exist and are usable; the plant and storage location can be assigned to a warehouse number that has no storage types or bins configured yet, so postings fail downstream even though the assignment itself is correct
  • Confusing this table with the plain plant to storage location existence table; T320 is specifically about WM relevance, not about whether the storage location exists in Materials Management terms
  • Assuming the relationship is many to many; in practice a given plant and storage location combination points to exactly one warehouse number at a time, changing it is a reassignment, not an addition
  • Editing the table directly via a generic table maintenance transaction instead of the customizing path, which skips the checks the configuration transaction normally runs against open transfer orders and existing stock
  • Treating this table as relevant to decentralized EWM; it governs classic embedded WM only, and an EWM-connected plant and storage location will not appear here in any meaningful way

Whose problem this is

Ownership sits with the logistics execution or WM configuration consultant, since this is an enterprise structure decision made once during warehouse setup and rarely touched afterward. Any proposed change needs sign-off from the MM consultant responsible for plant and storage location design, and coordination with whoever owns open transfer orders and current stock before the assignment is altered mid-stream.

Related SAP objects

Reviewed pages this object connects to in the ERPClimb knowledge graph.

Source: ERPClimb — https://erpclimb.com/sap-tables/t320ERPClimb is an independent platform and is not affiliated with SAP SE. Reference pages are written and reviewed by SAP consultants for learning and troubleshooting.