SAP CCMSBICONF Repository for Configuration Data Table data and field list

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

The CCMSBICONF table consists of various fields, each holding specific information or linking keys about Repository for Configuration Data data available in SAP. These include SOURCESYS (Partner Number of Receiver), PARAMTYPE (Configuration Parameter Type), PARAMNAME (Configuration Parameter Name), GENKEY (Generic 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. .

CCMSBICONF 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 CCMSBICONF 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 CCMSBICONF 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
CONFIGTYPEStatistical Data Type CCMSBI_STATTYPE_LCHAR45TEXT45
SOURCESYSPartner Number of Receiver EDI_RCVPRNCHAR10Assigned to domainALPHAEDI_PARNUM
PARAMTYPEConfiguration Parameter Type CCMSBI_PARAMTYPE_LCHAR20CHAR20
PARAMNAMEConfiguration Parameter Name CCMSBI_PARAMNAME_LCHAR30CHAR30
GENKEYGeneric Key CCMSBIGENKEYCHAR60CCMSBITXT60
IDXCounter CCMSBICHIDXCHAR10CCMSBICHIDX
PARAMVALUECCMSBI: Configuration Data Value CCMSBI_PARAM_VALUECHAR45TEXT45
INFO1Long Description CCMSBIDESCRLGCHAR128CCMSBIDESCRLG
INFO2Long Description CCMSBIDESCRLGCHAR128CCMSBIDESCRLG
CHGUSERUser Name SYUNAMECHAR12SYCHAR12
CHGTIMEUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TIMESTAMPDEC15TZNTSTMPS

Key field Non-key field



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

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

SELECT SINGLE *
FROM CCMSBICONF
INTO CORRESPONDING FIELDS OF WA_CCMSBICONF
WHERE...

How to access SAP table CCMSBICONF

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

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