SAP FMBUDVERS Activate Budget Versions Table data and field list

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

The FMBUDVERS table consists of various fields, each holding specific information or linking keys about Activate Budget Versions data available in SAP. These include FIKRS (Financial Management Area), GEBER (Fund), GJAHR (Fiscal Year), VERSN (Planning/budgeting 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. .

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


SAP FMBUDVERS 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 FMBUDVERS 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 MANDTCLNT3Assigned to domainMANDT
FIKRSFinancial Management Area FIKRSCHAR4FM01FIKRSFIK
GEBERFund BP_GEBERCHAR10Assigned to domainBP_GEBERFIC
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
VERSNPlanning/budgeting version BP_VERSIONCHAR3Assigned to domainALPHABP_VERSIONBP2
PB_ORGOriginal budget in payment budget PB_ORGCHAR1X
PB_RELEnter payment budget release PB_RELCHAR1X
PB_UPDPayment Budget Updates PB_UPDCHAR1X
PB_YSTPayment budget fiscal year start PB_YSTCHAR1X
PB_SUPEnter payment budget supplement PB_SUPCHAR1X
PB_YCHPayment budget fiscal year end PB_YCHCHAR1X
CB_ORGEnter original commitment budget CB_ORGCHAR1X
CB_RELEnter Commitment Budget Release CB_RELCHAR1X
CB_UPDCommitment Budget Updates CB_UPDCHAR1X
CB_SUPEnter Commitment Budget Supplement CB_SUPCHAR1X
CB_YSTCommitment Budget Fiscal Year Start CB_YSTCHAR1X
CB_YCHCommitment Budget Fiscal Year Change CB_YCHCHAR1X
PB_ORG_AUTHGRPAuthorization Group for Original Budget in Payment Budget FM_PB_ORG_AUTHGRPCHAR10CHAR10
PB_REL_AUTHGRPAuthorization Group for Payment Budget Release FM_PB_REL_AUTHGRPCHAR10CHAR10
PB_UPD_AUTHGRPAuthorization Group for Payment Budget: Budget Update FM_PB_UPD_AUTHGRPCHAR10CHAR10
PB_YST_AUTHGRPAuthorization Group for Payment Budget: Fiscal Year Start FM_PB_YST_AUTHGRPCHAR10CHAR10
PB_SUP_AUTHGRPAuthorization Group for Payment Budget: Enter Supplement FM_PB_SUP_AUTHGRPCHAR10CHAR10
PB_YCH_AUTHGRPAuthorization Group for Payment Budget: Fiscal Year End FM_PB_YCH_AUTHGRPCHAR10CHAR10
CB_ORG_AUTHGRPAuthorization Group for Commitment Budget in Payment Budget FM_CB_ORG_AUTHGRPCHAR10CHAR10
CB_REL_AUTHGRPAuthorization Group for Commitment Budget Release FM_CB_REL_AUTHGRPCHAR10CHAR10
CB_UPD_AUTHGRPAuthorization Group for Commitment Budget: Budget Update FM_CB_UPD_AUTHGRPCHAR10CHAR10
CB_SUP_AUTHGRPAuthorization Group for Commitment Budget: Enter Supplement FM_CB_SUP_AUTHGRPCHAR10CHAR10
CB_YST_AUTHGRPAuthorization Group for Commitment Budget: Fiscal Year Start FM_CB_YST_AUTHGRPCHAR10CHAR10
CB_YCH_AUTHGRPAuthorization Group for Commitment Budget: Fiscal Year End FM_CB_YCH_AUTHGRPCHAR10CHAR10

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMBUDVERS
INTO CORRESPONDING FIELDS OF WA_FMBUDVERS
WHERE...

How to access SAP table FMBUDVERS

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

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