SAP PRDM_PR_UNIT Generated Table for View PRDM_PR_UNIT Table data and field list

PRDM_PR_UNIT is a standard SAP Table View which is used to store Generated Table for View PRDM_PR_UNIT data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The PRDM_PR_UNIT table consists of various fields, each holding specific information or linking keys about Generated Table for View PRDM_PR_UNIT data available in SAP. These include PRODUCT_GUID (Internal Unique ID of Product), UNIT (Units of Measure of Product), PRODUCT_ID (Product ID), PRODUCT_TYPE (Product Type)... 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. .

PRDM_PR_UNIT table view Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP PRDM_PR_UNIT table view 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 PRDM_PR_UNIT 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
CLIENTClient MANDTCLNT3MANDT
PRODUCT_GUIDInternal Unique ID of Product COMT_PRODUCT_GUIDRAW16SYSUUID
UNITUnits of Measure of Product COMT_UNITUNIT3T006CUNITMEINS
PRODUCT_IDProduct ID COMT_PRODUCT_IDCHAR40PRID1COM_PRODUCT_IDCOM_PR_COLLECTION
PRODUCT_TYPEProduct Type COMT_PRODUCT_TYPECHAR2COMC_PR_TYPECOM_PRODUCT_TYPECOM_PRODUCT_TYPECOM_PR_TYPE_ACTIVE
CONFIGDetermines Whether a Product Is Configurable COMT_PRODUCT_CONFIGURABLECHAR1COM_PRODUCT_CONFIGURABLE
OBJECT_FAMILYObject Family COMT_PRODUCT_OBJECT_FAMILYCHAR4COMC_PR_OBJ_FAMCOM_PRODUCT_OBJECT_FAMILYCOM_OBJFAM_PRTYP
NUMERATORNumerator for Conversion to the Base Unit of Measure COMT_NUMERATORINT410INT4
DENOMINATORDenominator for Conversion to the Base Unit of Measure COMT_DENOMINATORINT410INT4
EXPONENT10Base 10 Exponent for Conversion to the Base Unit of Measure COMT_EXPONENT10INT25EXP10
GROSS_WEIGHTGross Weight COMT_GROSS_WEIGHTQUAN13(3) MENG13
NET_WEIGHTNet Weight COMT_NET_WEIGHTQUAN13(3) MENG13
WEIGHT_UNITWeight Unit COMT_WEIGHT_UNITUNIT3T006CUNITMEINS
VOLUMEVolume Occupied by the Product per Volume Unit COMT_VOLUMEQUAN13(3) MENG13
VOLUME_UNITUnit for the Volume of a Product COMT_VOLUME_UNITUNIT3T006CUNITMEINS
LENGTHLength of the Product or of the Packaging of the Product COMT_LENGTHQUAN13(3) MENG13
WIDTHWidth of the Product or of the Packaging of the Product COMT_WIDTHQUAN13(3) MENG13
HEIGHTHeight of the Product or of the Packaging of the Product COMT_HEIGHTQUAN13(3) MENG13
UNIT_OF_DIMUnit in Which Length/Width/Height Is Measured COMT_UNIT_OF_DIMENSIONUNIT3T006CUNITMEINS
IS_BASE_UNITBase Unit of Measure COMT_BASE_UNITCHAR1COMT_BASE_UNIT
LOGSYSOriginal System COMT_LOGSYSCHAR10ALPHALOGSYSCOM_LOGSYSCOM_PRODUCT_LOGSYS

Key field Non-key field



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

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

SELECT SINGLE *
FROM PRDM_PR_UNIT
INTO CORRESPONDING FIELDS OF WA_PRDM_PR_UNIT
WHERE...

How to access SAP table PRDM_PR_UNIT

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

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