SAP CMS_MESSAGE_CRM Table data and field list

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

The CMS_MESSAGE_CRM table consists of various fields, each holding specific information or linking keys about data available in SAP. These include ID (Identifier), SCHEME_ID (Profile), SCHEME_AGENCY_ID (Business System), GROUP_ID (Name of Group (for Key Mapping))... 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. .

CMS_MESSAGE_CRM table Technical Details:

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP CMS_MESSAGE_CRM 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 CMS_MESSAGE_CRM 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
IDIdentifier CMS_DTE_ID_CRMCHAR35CHAR_35
SCHEME_IDProfile CMS_DTE_SCHEME_ID_CRMCHAR22TCMS_SCHEME_CRMCMS_DOM_CHAR22_CRM
SCHEME_AGENCY_IDBusiness System CMS_DTE_SCHEME_AGENCY_ID_CRMCHAR60CHAR_60
GROUP_IDName of Group (for Key Mapping) CMS_DTE_GROUP_ID_CRMNUMC10NUMC10
CREATION_DATEDate DATUMDATS8DATUM
CREATION_TIMETime UZEITTIMS6UZEIT

Key field Non-key field



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

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

SELECT SINGLE *
FROM CMS_MESSAGE_CRM
INTO CORRESPONDING FIELDS OF WA_CMS_MESSAGE_CRM
WHERE...

How to access SAP table CMS_MESSAGE_CRM

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

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