SAP MSAM_CCONFPRF Confirmation profile Table data and field list

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

The MSAM_CCONFPRF table consists of various fields, each holding specific information or linking keys about Confirmation profile data available in SAP. These include PROFILE_CONFIRM (Confirmation Profile), CLOSE_SCENARIO (Order Closing), TIME_CONF_UP_SCE (Update When Confirming Data with Errors), OPR_CONF_TTYPE (Operation Confirmaton: Allowed Unit)... 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. .

MSAM_CCONFPRF 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: Cannot Be Enhanced

Text table = MSAM_CCONFPRFT


SAP MSAM_CCONFPRF 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 MSAM_CCONFPRF 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 MANDTCLNT3T000MANDT
PROFILE_CONFIRMConfirmation Profile MSAM_MO_PROFILE_CONFIRMCHAR10CHAR10
CLOSE_SCENARIOOrder Closing MSAM_MO_ORDER_CLOSE_SCENARIOCHAR1MSAM_MO_ORDER_CLOSE_SCENARIO
TIME_CONF_UP_SCEUpdate When Confirming Data with Errors MSAM_MO_TIME_CONF_UPDATE_SCENCHAR1MSAM_MO_TIME_CONF_UPDATE_SCEN
OPR_CONF_TTYPEOperation Confirmaton: Allowed Unit MSAM_MO_OPR_CONF_TIME_TYPECHAR1MSAM_MO_OPR_CONF_TIME_TYPE
OPR_CONF_UNITOperation Confirmation: Unit MSAM_MO_OPR_CONF_UNITCHAR1MSAM_MO_OPR_CONF_UNIT
OPR_CONF_ACTTYPEActivity Type for Confirmation MSAM_MO_OPR_CONF_ACTTYPECHAR1MSAM_MO_OPR_CONF_ACTTYPE
MAT_CONF_SCENMaterial Consumption with or without Serial Number MSAM_MO_MATERIAL_CONF_SCENARIOCHAR1MSAM_MO_MATERIAL_CONF_SCENARIO
MATERIAL_NUM_VFCheck Material Number MSAM_MO_MATERIAL_CONF_MATNR_VFCHAR1MSAM_MO_MATERIAL_CONF_MATNR_VF
INVENTORY_CHECKStock Check MSAM_MO_INVNT_CHECKCHAR1MSAM_MO_INVNT_CHECK
INVENTORY_AUTO_CIndicator: Check Stock Automatically ALM_ME_INVNT_AUTO_CHECKCHAR1XFELD
FINAL_CONFIRMConfiguration of the Final Confirmation of Operations MSAM_MO_FINAL_CONFIRMCHAR1MSAM_MO_FINAL_CONFIRM

Key field Non-key field



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

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

SELECT SINGLE *
FROM MSAM_CCONFPRF
INTO CORRESPONDING FIELDS OF WA_MSAM_CCONFPRF
WHERE...

How to access SAP table MSAM_CCONFPRF

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

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