SAP CCMCLBC Callback Configuration Table data and field list

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

The CCMCLBC table consists of various fields, each holding specific information or linking keys about Callback Configuration data available in SAP. These include CLB_PROF (Callback Configuration Profile), FLD_C_MCODE (Search help for manual caller search), FLD_C_MCODEID (Matchcode ID), CALLER_OBJECT (Business object with caller information)... 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. .

CCMCLBC table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = CCMCLBC_T


SAP CCMCLBC 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 CCMCLBC 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
CLB_PROFCallback Configuration Profile CCMCLBPROFCHAR15CHAR15
FLD_C_MCODESearch help for manual caller search CCMMCODE_CCHAR30Assigned to domainSHLPNAME
FLD_C_MCODEIDMatchcode ID MCIDCHAR1Assigned to domainMCIDDMI
CALLER_OBJECTBusiness object with caller information CCMOBJNAM_CCHAR32CHAR32
CALLER_KEYNAMEAttribute of the Object to be Displayed CCMIOKEYIDCHAR32CHAR32
GET_C_INFOFunction for Further Information About Callback Partner CCMGETPINFOFNCHAR30TFDIRFUNCNAME
CONTACT_MCODESearch help for manual contact person search CCMMCODE_TCHAR30Assigned to domainSHLPNAME
CONTACT_MCODEIDMatchcode ID MCIDCHAR1Assigned to domainMCIDDMI
CONTACT_OBJECTContact Person Identification From Object CCMOBJNAM_TCHAR32CHAR32
CONTACT_KEYNAMEAttribute of the Object to be Displayed CCMIOKEYIDCHAR32CHAR32
NO_REGIORegion display Yes/No CCMNOREGIOCHAR1CHAR1

Key field Non-key field



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

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

SELECT SINGLE *
FROM CCMCLBC
INTO CORRESPONDING FIELDS OF WA_CCMCLBC
WHERE...

How to access SAP table CCMCLBC

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

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