SAP BPBK Doc.Header Controlling Obj. Table data and field list

BPBK is a standard SAP Table which is used to store Doc.Header Controlling Obj. data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BPBK table consists of various fields, each holding specific information or linking keys about Doc.Header Controlling Obj. data available in SAP. These include BELNR (Document number from budget allocation & structure planning), GJAHR (Fiscal Year), VORGA (Budget Type Budgeting/Planning), CPUDT (Date Document Was Created)... 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. .

BPBK 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)


SAP BPBK 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 BPBK 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
BELNRDocument number from budget allocation & structure planning BP_BELNRNUMC10BP_BELNRBPB
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
VORGABudget Type Budgeting/Planning BP_VORGANGCHAR4T022ACTIVITY
CPUDTDate Document Was Created CO_CPUDTDATS8DATUM
USNAMName of Person who Created the Object ERNAMCHAR12USNAM
SUMBZNumber of posting lines for local objects CO_SUMBZNUMC3BUZEI
BUDATPosting Date in the Document BUDATDATS8DATUM
PERIOPosting period POPERNUMC3POPERPOPR
BLDATDocument Date BP_BLDATDATS8DATUM
SGTEXTItem Text SGTXTCHAR50TEXT50
NAMTEXTText Name TDNAMCHAR32CHAR32
DELBZNumber of deleted line items CO_DELBZNUMC3BUZEI
SUM_BPJANumber of posting lines for local objects CO_SUMBZNUMC3BUZEI
DEL_BPJANumber of deleted line items CO_DELBZNUMC3BUZEI
SUM_BPGENumber of posting lines for local objects CO_SUMBZNUMC3BUZEI
DEL_BPGENumber of deleted line items CO_DELBZNUMC3BUZEI
SUM_BPPENumber of posting lines for local objects CO_SUMBZNUMC3BUZEI
DEL_BPPENumber of deleted line items CO_DELBZNUMC3BUZEI
FOBELFollow-On Document Number BP_FOBELNUMC10BPBKBP_BELNR
VERANTPerson Responsible for Planning/Budgeting BP_VERANTCHAR20VERABBPV
SVERSNPlanning/budgeting source version BP_SVERSNCHAR3Assigned to domainALPHABP_VERSION
VALKEYValidation Key Budget/Planning BP_VALKEYCHAR10BP_VALKEY
BPDK_BELNREntry Document Number BP_DOCNRNUMC10Assigned to domainBP_DOCNRBPB

Key field Non-key field



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

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

SELECT SINGLE *
FROM BPBK
INTO CORRESPONDING FIELDS OF WA_BPBK
WHERE...

How to access SAP table BPBK

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

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