T331 SAP (Storage Type Control) Table details

Dictionary Type: Table
Description: Storage Type Control




ABAP Code to SELECT data from T331
Related tables to T331
Access table T331




Table field list including key, data, relationships and ABAP select examples

T331 is a standard SAP Table which is used to store Storage Type Control data and is available within R/3 SAP systems depending on the version and release level.

The T331 table consists of various fields, each holding specific information or linking keys about Storage Type Control data available in SAP. These include LGNUM (Warehouse Number / Warehouse Complex), LGTYP (Storage Type), KZNKO (Indicator: Execute Zero Stock Check), KAPAP (Capacity Check Method).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP T331 table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
LGNUMWarehouse Number / Warehouse Complex LGNUMCHAR3T300LGNUMLGN
LGTYPStorage Type LGTYPCHAR3T301LGTYPLGTH_T301
KZNKOIndicator: Execute Zero Stock Check LVS_KZNKOCHAR1XFELD
KAPAPCapacity Check Method T331_KAPAPCHAR1T331_KAPAP
QUEINIndicator: Confirmation of Putaway Required T331_QUEINCHAR1XFELD
QUAUSIndicator: confirmation of stock removal required T331_QUAUSCHAR1XFELD
VOLLEIndicator: complete stock removal required T331_VOLLECHAR1XFELD
MISCHIndicator: mixed storage T331_MISCHCHAR1T331_MISCH
ZULAGIndicator: addition to existing stock allowed T331_ZULAGCHAR1T331_ZULAG
NEGATIndicator: negative stock quantity allowed T331_NEGATCHAR1XFELD
VRUCKIndicator: Upon transfer return quantity to same storage bin T331_VRUCKCHAR1XFELD
UEBERIndicator: retain overdeliveries T331_UEBERCHAR1XFELD
RLTYPReturn storage type T331_RLTYPCHAR3T301LGTYP
STAUSStock Removal Strategy T331_STAUSCHAR1T331_STAUS
STEINPutaway strategy T331_STEINCHAR1T331_STEIN
KZINVInventory method T331_KZINVCHAR2T331_KZINV
SKZEIBlocking indicator: block bin for placement into stock T331_SKZEICHAR1XFELD
SKZAUBlocking indicator: block storage bin for stock removals T331_SKZAUCHAR1XFELD
LDESTName of printer LVS_LDESTCHAR4TSP03SPDEVRSPOPNAMEPRI
SFIFOIndicator: no stock removal if strict FIFO removal strat.set T331_SFIFOCHAR1XFELD
SPEINSet blocking indicator at time of placement into storage T331_SPEINCHAR1LVS_SPERR
SPAUSSet blocking indicator at time of stock removal T331_SPAUSCHAR1LVS_SPERR
SPGRUBlocking reason LVS_SPGRUCHAR1T330LVS_SPGRU
PRLETInd: Activate storage unit type check for stock placement T331_PRLETCHAR1XFELD
PRBERIndicator: storage section check active T331_PRBERCHAR1T331_PRBER
WGFKLWater Pollution Class MGEF_WGFKLNUMC1MGEF_WGFKL
GEFALIndicator: management of hazardous materials active T331_GEFALCHAR1T331_GEFAL
KZUAPIndicator: post and leave materials in same storage bin LVS_KZUAPCHAR1XFELD
INVPEContinuous inventory upon placement into stock LVS_INVPECHAR1XFELD
INVPNContinuous inventory based on zero stock check LVS_INVPNCHAR1XFELD
LENVWIndicator: Storage type with storage unit management T331_LENVWCHAR1XFELD
IPUNKIndicator: Storage type is an identification point T331_IPUNKCHAR1XFELD
IPTYPIdentification point for storage type T331_IPTYPCHAR3T301LGTYP
KPUNKIndicator: Storage type is a pick point T331_KPUNKCHAR1XFELD
KPTYPPick point for storage type T331_KPTYPCHAR3T301LGTYP
BWWMPWM movement type for internal warehouse supply T331_BWWMPNUMC3T333BWLVSBWL
USEINStock placement strategy via user exit T331_USEINCHAR1XFELD
USAUSStock removal strategy via user exit T331_USAUSCHAR1XFELD
MAILKMail control for replenishment stor.type T331_MAILKCHAR2T333MLVS_MAILK
INVCCInventory through Cycle Counting LVS_INVCCCHAR1XFELD
MINWMStorage type does not manage bin stock T331_MINWMCHAR1XFELD
MRAUSSwitch off quantity reduction for TOs for PP mat. staging T331_MRAUSCHAR1XFELD
TBZUGDatabase access to trans. requirements during qty reduction T331_TBZUGCHAR1TBZUG
MEAUSUn.of measure type search for planned proc.time, picking TO T331_MEAUSCHAR1T331_METYF
MEEINUn.of measure type search for planned proc.time, plcmnt TO T331_MEEINCHAR1T331_METYF
AKTKAActive capacity check T331_AKTKACHAR1XFELD
RDMNGRound off requested quantity for stock removal T331_RDMNGCHAR1XFELD
NPLEIDest.stor.bin changeable during confirmation LVS_NPLEICHAR1LVS_NPLEI
PIKTAControl for HU pick T331_PIKTACHAR1T331_PIKTA
NOGREGoods receipt posting not allowed for this storage type T331_NOGRECHAR1T331_NOGRE
NOGISNo goods issue posting allowed for this storage type T331_NOGISCHAR1T331_NOGIS
NOTRPPosting changes to this storage type not allowed T331_NOTRPCHAR1T331_NOTRP
NODIFNo difference posting allowed in this storage type T331_NODIFCHAR1T331_NODIF
REPLTReplenishment method in the storage type T331_REPLTCHAR1T331_REPLT
PROFILEPicking Profile: HUs from WM PL_PROFILE_WMCHAR4CHUWMPUTPL_PROFILE_WM
.INCLU--AP 0
LZONEZone LAGP_LZONECHAR10LTRM_ZONE
XCORDX Coordinate LAGP_XCORDQUAN10(3) LTRM_COORD
YCORDY Coordinate LAGP_YCORDQUAN10(3) LTRM_COORD
ZCORDZ Coordinate LAGP_ZCORDQUAN10(3) LTRM_COORD

Key field Non-key field



How do I retrieve data from SAP table T331 using ABAP code

The following ABAP code Example will allow you to do a basic selection on T331 to SELECT all data from the table
DATA: WA_T331 TYPE T331.

SELECT SINGLE *
FROM T331
INTO CORRESPONDING FIELDS OF WA_T331
WHERE...

How to access SAP table T331

Within an ECC or HANA version of SAP you can also view further information about T331 and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!