SAP FRMLS_CMP RMSA: Composition Contribution Table data and field list

FRMLS_CMP is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "RMSA: Composition Contribution" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_FRMLS_CMP TYPE FRMLS_CMP.

The FRMLS_CMP table consists of various fields, each holding specific information or linking keys about RMSA: Composition Contribution data available in SAP. These include CMP (Component ID), QTY (Floating Point Value), UNIT (Unit of Measure), UNIT_STEXT (Technical Unit of Measurement)... 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. .

FRMLS_CMP structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP FRMLS_CMP structure 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 FRMLS_CMP 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
IDID FRMLE_IDCHAR32FRMLD_ID
CMPComponent ID FRMLE_CMPCHAR32FRMLD_ID
QTYFloating Point Value FRMLE_FLTFLTP16(16) FLTP
UNITUnit of Measure FRMLE_UNITUNIT3Assigned to domainCUNITMEINS
UNIT_STEXTTechnical Unit of Measurement FRMLE_MSEH6CHAR6MSEH6
EXCVALException Value FRMLE_EXVALCHAR2FRMLD_EXVAL
EXCVAL_TXTText for Exception Value FRMLE_EXCVAL_TXTCHAR40CHAR40
SOURCEData Source FRMLE_SRCCHAR8FRMLD_SRC
FACTFloating Point Value FRMLE_FLTFLTP16(16) FLTP
OUT_QTYFloating Point Value FRMLE_FLTFLTP16(16) FLTP
OUT_UNITUnit of Measure FRMLE_UNITUNIT3Assigned to domainCUNITMEINS
QTY_AFTER_PROCFloating Point Value FRMLE_FLTFLTP16(16) FLTP
QTY_AFTER_STOREFloating Point Value FRMLE_FLTFLTP16(16) FLTP
OUT_EXCVALException Value FRMLE_EXVALCHAR2FRMLD_EXVAL
OUT_EXCVAL_TXTTemplate Specification Exception Value FRMLE_OUT_EXVAL_TXTCHAR132FRMLD_EXVAL_TXT
OPLOWOperator for Lower Limit FRMLE_OPLOWCHAR2FRMLD_OPLOW
COMPLOWFloating Point Value FRMLE_FLTFLTP16(16) FLTP
OPUPOperator for Upper Limit FRMLE_OPUPCHAR2FRMLD_OPUP
COMPUPPFloating Point Value FRMLE_FLTFLTP16(16) FLTP
RECNRMS-FRM: Object Identifier FRMLE_RECNCHAR32FRMLD_GUID
RECNMSTHigher-Level Object Identifier FRMLE_RECN_MASTERCHAR32FRMLD_GUID
RECNROOTFormula Header Object FRMLE_RECNROOTCHAR32FRMLD_GUID
LINEMODEProcessing Status/Mode of a Record/Step Loop Line FRMLE_LINEMODECHAR1CHAR1
CMP_TXTDescription of a Component in the Formula Explosion FRMLE_COMP_TXTCHAR132FRMLD_COMP_TXT
ROLEComponent Type (Material, Substance, or Stream Item) FRMLE_ROLECHAR10Assigned to domainESDCOMPCAT
ROLE_TXTDescription of Component Type FRMLE_ROLENAMECHAR40TEXT40
LINENOGeneral Counter FRMLE_COUNTNUMC4NUMC04
AUTH_STOPStop Explosion Due to Lack of Authorization FRMLE_AUTH_STOPCHAR1FRMLD_AUTH_STOP
ID_KINDItem Type (Substance, Material, Stream) FRMLE_ID_KINDCHAR1FRMLD_ID_KIND

Key field Non-key field



How do I retrieve data from SAP structure FRMLS_CMP using ABAP code?

As FRMLS_CMP is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on FRMLS_CMP as there is no data to select.

How to access SAP table FRMLS_CMP

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

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