SAP MCPPCUST Performance Customizing: PPIS Table data and field list

MCPPCUST is a standard SAP Table which is used to store Performance Customizing: PPIS data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The MCPPCUST table consists of various fields, each holding specific information or linking keys about Performance Customizing: PPIS data available in SAP. These include KALK (Costs are used), WA (Goods issues are used), VG (Operations are used), KAPA (Capacity is used)... 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. .

MCPPCUST table Technical Details:

Delivery Class: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP MCPPCUST 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 MCPPCUST 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
KALKCosts are used MCPPKALKCHAR1X
WAGoods issues are used MCPPWACHAR1X
VGOperations are used MCPPVGCHAR1X
KAPACapacity is used MCPPKAPACHAR1X
DFZExecution time is used MCPPDFZCHAR1X
VGRFCheck sequence of operations MCPPVGRFCHAR1X
LGZWait time used MCPPLGZCHAR1MCPPABEZ
BUDAPosting date of the last confirmation is used MCPPBUDACHAR1X
LSTGActivities to be confirmed are used MCPPLSTGCHAR1X
ZLSTGTarget activities are used MCPPZLSTGCHAR1X
LSTGEHUnit for activity MCPPLSTGEHUNIT3T006CUNITMEINS
ZGRPerformance efficiency rates are used MCPPZGRCHAR1X
DFLZExact execution time and/or exact lead time MCPPDFLZCHAR1MCPPDFLZ
DFZEHUnit for execution time (exact) MCPPDFZEHUNIT3T006CUNITMEINS
BEARActual processing time is used MCPPBEARCHAR1X
KALKEXTExtended cost information MCPPKALKEXTCHAR1X
KUPCo-product MCPPKUPCHAR1X

Key field Non-key field



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

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

SELECT SINGLE *
FROM MCPPCUST
INTO CORRESPONDING FIELDS OF WA_MCPPCUST
WHERE...

How to access SAP table MCPPCUST

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

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