SAP TKBBA Document Types Table data and field list

TKBBA is a standard SAP Table which is used to store Document Types data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TKBBA table consists of various fields, each holding specific information or linking keys about Document Types data available in SAP. These include BLTYP (Earmarked funds document category), BLART (Earmarked fund document type), NUMKR (Number range for earmarked funds), FSTAGRE (Funds reservation field status group)... 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. .

TKBBA table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)

Text table = TKBBAT


SAP TKBBA 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 TKBBA 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
BLTYPEarmarked funds document category FMRE_BLTYPNUMC3FMRE_BLTYP
BLARTEarmarked fund document type FMRE_BLARTCHAR2FMRE_BLART
NUMKRNumber range for earmarked funds FM_RE_NKNRCHAR2NRIVCHAR2
FSTAGREFunds reservation field status group FSTAGRECHAR4TREGFSTAGRE
VORLAGEARTGroup key for earmarked fund copying template VORLAGEARTCHAR4TVA01VORLAGEART
REFERARTGroup key for transfer from reference documents REFERARTCHAR4TVA02REFERART
WORKFLWARTGroup key for workflow-relevant fields WORKFLWARTCHAR4TREWFWORKFLWART
WF_STARTStart workflow WF_STARTCHAR1CHAR1_X
NEGVALNegative document FR_NEGVALCHAR1XFELD
RESZResidence time (calendar months) KBLRESZNUMC3NUMC3
FORM_NAMEName of Form Object FPNAMECHAR30FPNAME
GLACCDRVIndicator: Derivation of G/L account from FM account ass. FMR_GLACCDRVCHAR1XFELD
ADDITIV_CONS_LOGAdditive Consumption Logic of Earmarked Funds ADDITIV_CONSUMPTION_LOGICCHAR1CHAR1_X
TOLSLTolerance Key for Overrun Tolerance FMR_TOLSLCHAR4FMR_TOLSFMR_TOLSL
FORMTYPEForm Formatting Type FPTOOLTYPECHAR1FPTOOLTYPE
.INCLU--AP 0
FMRO_TEMPLATEIndicator that document is a recurring obligations template FMRO_TEMPLATECHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM TKBBA
INTO CORRESPONDING FIELDS OF WA_TKBBA
WHERE...

How to access SAP table TKBBA

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

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