SAP PRCC_CTYPE_DEF Calculation Types in Pricing Table data and field list

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

The PRCC_CTYPE_DEF table consists of various fields, each holding specific information or linking keys about Calculation Types in Pricing data available in SAP. These include CTYPE (Calculation Type for Condition)... 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. .

PRCC_CTYPE_DEF table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = PRCC_CTYPE_T


SAP PRCC_CTYPE_DEF 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 PRCC_CTYPE_DEF 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
CTYPECalculation Type for Condition PRCT_CALCULATION_TYPECHAR3PRC_CALCULATION_TYPE

Key field Non-key field



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

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

SELECT SINGLE *
FROM PRCC_CTYPE_DEF
INTO CORRESPONDING FIELDS OF WA_PRCC_CTYPE_DEF
WHERE...

How to access SAP table PRCC_CTYPE_DEF

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

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