SAP BKKC01 Gen.Ledger: Reconciliation Key Accounting Documents Table data and field list

BKKC01 is a standard SAP Table which is used to store Gen.Ledger: Reconciliation Key Accounting Documents data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BKKC01 table consists of various fields, each holding specific information or linking keys about Gen.Ledger: Reconciliation Key Accounting Documents data available in SAP. These include BKKRS (Bank Area), FIKEY (Reconciliation Key Accounting Documents), FIKEYC (Additional Reconciliation Key Accounting Documents), FIKST (Control Information Reconciliation Key)... 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. .

BKKC01 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: Can be enhanced (character-type or numeric)


SAP BKKC01 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 BKKC01 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
BKKRSBank Area BKK_BKKRSCHAR4TBKK01BKK_BKKRSBNS
FIKEYReconciliation Key Accounting Documents BKK_FIKEYNUMC10BKK_FIKEY
FIKEYCAdditional Reconciliation Key Accounting Documents BKK_FIKEYCNUMC4BKK_FIKEYC
FIKSTControl Information Reconciliation Key BKK_FIKSTCHAR1BKK_FIKST
GLPROCESSGL Process BKK_PROCCHAR4TBKKC03BKK_PROC
BUKRSCompany Code BUKRSCHAR4Assigned to domainBUKRSBUKC_T001
GLVARGL Variants BKK_GLVARCHAR4TBKKCVARBKK_GLVAR
CRDATDate on which the object was created BKK_CRDATDATS8DATUM
CRTIMTime at which the object was created BKK_CRTIMTIMS6UZEIT
CRUSRUser who created the object BKK_CRUSRCHAR12USNAM
CHUSRLast user to change object BKK_CHUSRCHAR12USNAM
CHDATDate on which the object was last changed BKK_CHDATDATS8DATUM
CHTIMTime at Which Object was Last Changed BKK_CHTIMTIMS6UZEIT
RLDATDate on which object was released BKK_RLDATDATS8DATUM
RLTIMTime at Which Object Was Released BKK_RLTIMTIMS6UZEIT
RLUSRUser who released object BKK_RLUSRCHAR12USNAM
SUMSZTotals Record Number for Reconciliation Key BKK_SUMSZINT410
UEBSTTransfer Status Reconciliation Key BKK_UEBSTCHAR1BKK_UEBST
CNT_UPDNumber of Updates Executed by Poster Reconciliation Key BKK_GLCUPDINT410

Key field Non-key field



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

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

SELECT SINGLE *
FROM BKKC01
INTO CORRESPONDING FIELDS OF WA_BKKC01
WHERE...

How to access SAP table BKKC01

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

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