SAP COMD_WEC_BP_CPD Default Checkout Profile Table data and field list

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

The COMD_WEC_BP_CPD table consists of various fields, each holding specific information or linking keys about Default Checkout Profile data available in SAP. These include PROFILE_GROUP (Checkout Profile Group), PARTNER_NO (Business Partner Number), PROFILE_GUID (Checkout Profile GUID)... 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. .

COMD_WEC_BP_CPD 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 COMD_WEC_BP_CPD 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 COMD_WEC_BP_CPD 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
PROFILE_GROUPCheckout Profile Group COM_WEC_BP_CHKOUT_PRFL_GROUPCHAR2COMC_WEC_BP_CPGCHAR2
PARTNER_NOBusiness Partner Number BU_PARTNERCHAR10Assigned to domainALPHABU_PARTNERBPABUPA
PROFILE_GUIDCheckout Profile GUID COM_WEC_CHKOUT_PROF_GUIDRAW16SYSUUID

Key field Non-key field



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

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

SELECT SINGLE *
FROM COMD_WEC_BP_CPD
INTO CORRESPONDING FIELDS OF WA_COMD_WEC_BP_CPD
WHERE...

How to access SAP table COMD_WEC_BP_CPD

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

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