SAP RLMFWOLCMP Release Order - Items - Component Variants Table data and field list

RLMFWOLCMP is a standard SAP Table which is used to store Release Order - Items - Component Variants data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The RLMFWOLCMP table consists of various fields, each holding specific information or linking keys about Release Order - Items - Component Variants data available in SAP. These include RONUM (Order Number), LOGSYS (Logical system), OBJTYP (Release Object Type), OBJKEY (Release Object Key)... 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. .

RLMFWOLCMP 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 RLMFWOLCMP 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 RLMFWOLCMP 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 MANDTCLNT3Assigned to domainMANDT
RONUMOrder Number RLMFW_RONUMCHAR14RLMFWOHALPHARLMFW_RONUMRLMFW_RONUMRLMFW_OH
LOGSYSLogical system LOGSYSCHAR10Assigned to domainALPHALOGSYS
OBJTYPRelease Object Type RLMFW_OBJTYPCHAR4Assigned to domainALPHARLMFW_OBJTYPRLMFW_OBJTYP
OBJKEYRelease Object Key RLMFW_OBJKEYCHAR60RLMFW_OBJKEY
TARGETRelease Target RLMFW_TARGETCHAR4Assigned to domainRLMFW_TARGET
CHANGE_NOChange Number in iPPE PVS_AENNRCHAR12ALPHAPPE_AENNR
CLASS_NUMClass PPE_KLASSECHAR18KLASSEKLA_ATPVS_CLASS02
CLASS_TYPEClass Type PPE_KLASSENARTCHAR3Assigned to domainKLASSENARTPPE_KARPVS_KLART01
MATERIAL_LONGLong External Material Number PPE_MATERIAL_LONGCHAR40PPE_MATERIAL_LONG
MATERIAL_VERSIONMaterial Version Number PPE_MATERIAL_VERCHAR10PPE_MATERIAL_VER
MATERIAL_GUIDGUID for Material in (External) CHAR32 Format PPE_MATGUID_EXTCHAR32SYSUUID_C
QUANTITYQuantity (in Component Variant) PVS_QUANTQUAN13(3) MENG13V
QUANTITY_UNITUnit of Measure PVS_QUNITUNIT3Assigned to domainCUNITMEINSH_T006
VARIANT_NAMEVariant PVS_POSVARCHAR8ALPHAPVS_POSVARPOSV
NODE_NAMEiPPE Node Description PVS_PNODECHAR40PVS_PNODEPND
VARIANT_TYPEiPPE Variant Type PVS_POSV_TYPECHAR8Assigned to domainPVS_POSV_TYPE
NODE_TYPEiPPE Node Type PVS_PNODE_TYPECHAR8Assigned to domainPVS_PNODE_TYPEPNTYPE

Key field Non-key field



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

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

SELECT SINGLE *
FROM RLMFWOLCMP
INTO CORRESPONDING FIELDS OF WA_RLMFWOLCMP
WHERE...

How to access SAP table RLMFWOLCMP

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

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