SAP CEST4 Segment table (CO-PA) Table data and field list

CEST4 is a standard SAP Table which is used to store Segment table (CO-PA) data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CEST4 table consists of various fields, each holding specific information or linking keys about Segment table (CO-PA) data available in SAP. These include AKTBO (Current profitability segment (CO-PA)), PAOBJNR (Profitability Segment Number (CO-PA)), PASUBNR (Profitability segment changes (CO-PA)), BISDAT (Valid to)... 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. .

CEST4 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: Not classified


SAP CEST4 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 CEST4 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
AKTBOCurrent profitability segment (CO-PA) AKTBOCHAR1CHAR1
PAOBJNRProfitability Segment Number (CO-PA) RKEOBJNRNUMC10RKEOBJNR
PASUBNRProfitability segment changes (CO-PA) RKESUBNRNUMC4RKESUBNR
BISDATValid to AUFDATBIDATS8DATUM
KNT_FRM_KZIndicator for use in account-based Profitability Analysis RKE_KNTFRMNUMC1RKE_KNTFRM
UNUSED_CE3Flag: NOT Posted to Costing-Based Profitability Analysis COPA_UNUSED_CE3CHAR1COPA_UNUSED_CE3
KNDNRCustomer KUNDE_PACHAR10KNA1ALPHAKUNNRVAG
ARTNRProduct number ARTNRCHAR18MARAMATN1MATNRMAT
FKARTBilling Type FKARTCHAR4TVFKFKART
KAUFNSales Order Number KDAUFCHAR10VBUKALPHAVBELNAUN
KDPOSItem Number in Sales Order KDPOSNUMC6NUM06KPO
AUFNROrder Number AUFNRCHAR12AUFKALPHAAUFNRANR
BUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
KOKRSControlling Area KOKRSCHAR4TKA01CACCDCAC
WERKSPlant WERKS_DCHAR4T001WWERKSWRKH_T001W_C
GSBERBusiness Area GSBERCHAR4TGSBGSBERGSB
VKORGSales Organization VKORGCHAR4TVKOVKORGVKOC_VKORG
VTWEGDistribution Channel VTWEGCHAR2TVTWVTWEGVTWC_VTWEG
SPARTDivision SPARTCHAR2TSPASPARTSPAC_SPART
PRCTRProfit Center PRCTRCHAR10CEPCALPHAPRCTRPRCPRCTR_EMPTY
PPRCTRPartner Profit Center PPRCTRCHAR10CEPCALPHAPRCTRPPC
KSTRGCost Object KSTRGCHAR12CKPHKSTRGKTR
PSPNRWork Breakdown Structure Element (WBS Element) PS_PSP_PNRNUMC8PRPSKONPRPS_POSNR
MEINHUnit of Measure CO_MEINHUNIT3T006CUNITMEINS

Key field Non-key field



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

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

SELECT SINGLE *
FROM CEST4
INTO CORRESPONDING FIELDS OF WA_CEST4
WHERE...

How to access SAP table CEST4

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

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