SAP MEAN International Article Numbers (EANs) for Material Table data and field list

MEAN is a standard SAP Table which is used to store International Article Numbers (EANs) for Material data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The MEAN table consists of various fields, each holding specific information or linking keys about International Article Numbers (EANs) for Material data available in SAP. These include MATNR (Material Number), MEINH (Unit of Measure for Display), LFNUM (Consecutive Number), EAN11 (International Article Number (EAN/UPC))... 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. .

MEAN table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP MEAN 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 MEAN 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
MATNRMaterial Number MATNRCHAR18MARAMATN1MATNRMATS_MAT1
MEINHUnit of Measure for Display MEINHUNIT3T006CUNITMEINS
LFNUMConsecutive Number LFNUMCHAR5CHAR5
EAN11International Article Number (EAN/UPC) EAN11CHAR18EAN11EAN11EAN
EANTPCategory of International Article Number (EAN) NUMTPCHAR2TNTPNUMTP
HPEANIndicator: Main EAN HPEANCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM MEAN
INTO CORRESPONDING FIELDS OF WA_MEAN
WHERE...

How to access SAP table MEAN

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

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