SAP T006 Units of Measurement Table data and field list

T006 is a standard SAP Table which is used to store Units of Measurement data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The T006 table consists of various fields, each holding specific information or linking keys about Units of Measurement data available in SAP. These include MSEHI (Unit of Measurement), KZEX3 (3-char indicator for external unit of measurement), KZEX6 (6-char. ID for external unit of measurement), ANDEC (No. of decimal places to which rounding should be performed)... 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. .

T006 table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = T006A


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

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the T006 table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
MSEHIUnit of Measurement MSEHIUNIT3CUNITMEINS
KZEX33-char indicator for external unit of measurement KZEX3CHAR1X
KZEX66-char. ID for external unit of measurement KZEX6CHAR1X
ANDECNo. of decimal places to which rounding should be performed ANDECINT25ANDEC
KZKEHCommercial measurement unit ID KZKEHCHAR1X
KZWOBValue-based commitment indicator KZWOBCHAR1X
KZ1EHIndicator (1) unit (indicator not yet defined) KZ1EHCHAR1X
KZ2EHIndicator (2) unit (indicator not yet defined) KZ2EHCHAR1X
DIMIDDimension key DIMIDCHAR6T006DDIMID
ZAEHLNumerator for conversion to SI unit DZAEHLINT410
NENNRDenominator for conversion into SI unit NENNRINT410
EXP10base ten exponent for conversion to SI unit EXP10INT25EXP10
ADDKOAdditive constant for conversion to SI unit ADDKODEC9(6) ADDKO
EXPONBase ten exponent for floating-point display EXPONINT25EXP10
DECANNumber of decimal places for number display DECANINT25DECAN
ISOCODEISO code for unit of measurement ISOCD_UNITCHAR3T006IISOCD_UNIT
PRIMARYSelection field for conversion from ISO code to int. code ISOCD_MARKCHAR1X
TEMP_VALUETemperature TEMP_VALUEFLTP16(16) TEMP_VALUE
TEMP_UNITTemperature unit TEMP_UNITUNIT3T006CUNITMEINS
FAMUNITUnit of measurement family FAMUNITCHAR1CHAR1
PRESS_VALPressure Value PRESS_VALFLTP16(16) TEMP_VALUE
PRESS_UNITUnit of Pressure PRESS_UNITUNIT3Assigned to domainCUNITMEINS

Key field Non-key field



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

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

SELECT SINGLE *
FROM T006
INTO CORRESPONDING FIELDS OF WA_T006
WHERE...

How to access SAP table T006

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

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