SAP KOMPCV Account Determination Communication Item Table data and field list

KOMPCV is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Account Determination Communication Item" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_KOMPCV TYPE KOMPCV.

The KOMPCV table consists of various fields, each holding specific information or linking keys about Account Determination Communication Item data available in SAP. These include KTGRM (Account assignment group for this material), KSCHA (Condition type), KVSL1 (Account key), POSNR (Item number of the SD document)... 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. .

KOMPCV structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP KOMPCV structure 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 KOMPCV 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
WERKSPlant WERKS_DCHAR4Assigned to domainWERKSWRKH_T001W_C
KTGRMAccount assignment group for this material KTGRMCHAR2Assigned to domainKTGRM
KSCHACondition type KSCHACHAR4Assigned to domainKSCHLVKS
KVSL1Account key KVSL1CHAR3Assigned to domainKVSCHL
POSNRItem number of the SD document POSNRNUMC6Assigned to domainPOSNR
STUNRStep number STUNRNUMC3Assigned to domainSTUNR
KRUEKCondition is Relevant for Accrual (e.g. Freight) KRUEKCHAR1XFELD
SPARTDivision SPARTCHAR2Assigned to domainSPARTSPAC_SPART
CCINSPayment cards: Card type CCINSCHAR4Assigned to domainCCINS
LOCIDPayment cards: Point of receipt for the transaction LOCID_CCCHAR10Assigned to domainLOCID_CC
MWSKZTax on sales/purchases code MWSKZCHAR2Assigned to domainMWSKZ
BEMOTAccounting Indicator BEMOTCHAR2Assigned to domainBEMOT
PDUMMYDummy function in length 1 DUMMYCHAR1DUMMY
.INCLU--AP 0
PSTYVSales document item category PSTYVCHAR4Assigned to domainPSTYV
.INCLU--AP 0
J_1ISTCODELST CST applicability code J_1ISTCODECHAR3Assigned to domainJ_1ISTCODE
J_1IFORMC1Form Type J_1IFORTYPCHAR3Assigned to domainJ_1IFORTYP
J_1IFORMC2Form Type J_1IFORTYPCHAR3Assigned to domainJ_1IFORTYP
.INCLU--AP 0
J_3GLGSBERProviding Business Area J_3GLGSBERCHAR4Assigned to domainGSBER
J_3GLBUKRSProviding Company Code J_3GLBUKRSCHAR4Assigned to domainBUKRS
J_3GETYPASending Recipient Type J_3GETYPACHAR2Assigned to domainJ_3GETYP
J_3GBGSBERDebited Business Area J_3GEGSBERCHAR4Assigned to domainGSBER
J_3GBBUKRSDebited company code J_3GEBUKRSCHAR4Assigned to domainBUKRS
J_3GETYPEReceiving Recipient Type J_3GETYPECHAR2Assigned to domainJ_3GETYP
J_3GEIFRIndicator for Own/External Equipment J_3GEIFRCHAR1J_3GEIFR
J_3GTPLKZCatalog Code J_3GTPLKZCHAR5Assigned to domainJ_3GTPLKZJ2R
J_3GBLTYPCEM Document Category J_3GBLTYPCHAR1J_3GBLTYP
J_3GLVARTActivity Type J_3GLVARTCHAR4Assigned to domainJ_3GLVART
J_3GKATGR1Catalog Group 1 J_3GKATGR1CHAR5J_3GKATGR1
J_3GKATGR2Catalog Group 2 J_3GKATGR2CHAR15J_3GKATGR2
.INCLU--AP 0
POSKTControlling Item Type WTY_POSKTCHAR4WTY_POSKT
REFKTReference Type WTY_REFKTCHAR2WTY_F4_REFKT
RETPAStatus for Parts that Have to Be Returned from Claimant WTY_RETPACHAR1WTY_RETPA

Key field Non-key field



How do I retrieve data from SAP structure KOMPCV using ABAP code?

As KOMPCV is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on KOMPCV as there is no data to select.

How to access SAP table KOMPCV

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

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