SAP FMBDA Actual line item table Table data and field list

FMBDA is a standard SAP Table which is used to store Actual line item table data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMBDA table consists of various fields, each holding specific information or linking keys about Actual line item table data available in SAP. These include GL_SIRID (Record number of the line item record), RLDNR (Ledger), RRCTY (Record Type), RVERS (Version)... 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. .

FMBDA 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: Cannot Be Enhanced


SAP FMBDA 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 FMBDA 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
RCLNTClient MANDTCLNT3T000MANDT
GL_SIRIDRecord number of the line item record GU_RECIDCHAR18OBJNROBN
RLDNRLedger RLDNRCHAR2T881ALPHARLDNRGLNH_T881
RRCTYRecord Type RRCTYCHAR1RRCTY
RVERSVersion VERSNCHAR3TKVSALPHACOVERSIKVS
RYEARFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
RTCURCurrency Key RTCURCUKY5TCURCWAERSFWS
DRCRKDebit/Credit Indicator SHKZGCHAR1SHKZG
POPERPosting period POPERNUMC3POPERPOPR
DOCCTDocument Type DOCCTCHAR1DOCCTGCT
DOCNRAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
DOCLNSix-Character Posting Item for Ledger DOCLN6CHAR6DOCLN6
RFIKRSFinancial Management Area FIKRSCHAR4FM01FIKRSFIK
RFUNDFund FM_FUNDCHAR10FMFINCODEBP_GEBERFIC
RFUNDSCTRFunds Center FISTLCHAR16FMFCTRFISTLFIS
RCMMTITEMCommitment Item FM_FIPEXCHAR24FMCIFM_FIPEXFPS
RFUNCAREAFunctional Area FKBERCHAR16TFKBFKBERFBE
RUSERDIMCustomer Field for FM Actual and Commitment Data FM_USERDIMCHAR10CHAR10
RGRANT_NBRGrant GM_GRANT_NBRCHAR20GMGRALPHAGM_GRANT_NBRGM_GRANT_NBRGRANTS_GENERIC
RMEASUREFunded Program FM_MEASURECHAR24FMMEASUREFM_MEASUREFM_MEASURE
BUDGET_PD_9FM: Budget Period FM_BUDGET_PERIODCHAR10Assigned to domainFM_BUDGET_PERIODBUDPER
CEFFYEAR_9Year of Cash Effectivity GNJHRNUMC4GJAHRGJAHRGNJHR
VALTYPE_9BCS Value Type BUKU_VALTYPECHAR2BUVALTYPEBUKU_VALTYPE
WFSTATE_9Workflow Status of a Record in the Budget Totals Table BUKU_WFSTATECHAR1BUKU_WFSTATE
PROCESS_9Internal Budgeting Process BUKU_PROCESSCHAR4BUPROCESSBUKU_PROCESS
BUDTYPE_9Budget Type BUKU_BUDTYPECHAR4CHAR4BUTY
LOGSYSLogical system LOGSYSCHAR10TBDLSALPHALOGSYS
TSLValue in Transaction Currency VTCUR9CURR17(2) WERTV9
HSLValue in local currency VLCUR9CURR17(2) WERTV9
KSLValue in group currency VGCUR9CURR17(2) WERTV9
SGTXTItem Text SGTXTCHAR50TEXT50
DOCTYFI-SL Document Type DOCTYCHAR2T889DOCTYBAR
ACTIVBusiness Transaction GLVORCHAR4CHAR4
BUDATPosting Date in the Document BUDATDATS8DATUM
WSDATValue Date for Currency Translation WSDATDATS8DATUMWSD
REFDOCNRReference document number of an accounting document REFBELNRCHAR10ALPHABELNRBLN
REFRYEARReference fiscal year REFGJAHRNUMC4GJAHRGJAHRGJR
REFDOCLNSix-digit number of the reference posting line REFBUZEI6NUMC6BUZEI6BUZ
REFDOCCTReference document category REFDOCCTCHAR1DOCCTGCT
REFACTIVFI-SL Business Reference Transaction REFGLVORCHAR4CHAR4
CPUDTDay On Which Accounting Document Was Entered CPUDTDATS8DATUM
CPUTMTime of Entry CPUTMTIMS6UZEIT
USNAMUser name USNAMCHAR12Assigned to domainXUBNAMEUSR
AWTYPReference Transaction AWTYPCHAR5TTYPAWTYP
AWORGReference Organizational Units AWORGCHAR10AWORG
CTEM_CATEGORY_9Commitment Item Category FM_POTYPNUMC1FM_POTYP
TECHORG_9Original Application BUKU_TECHORGCHAR10Assigned to domainBUKU_TECHORG

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMBDA
INTO CORRESPONDING FIELDS OF WA_FMBDA
WHERE...

How to access SAP table FMBDA

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

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