SAP FMDI_HEADER Direct Input from Budget: Document Header Data Table data and field list

FMDI_HEADER is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Direct Input from Budget: Document Header Data" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_FMDI_HEADER TYPE FMDI_HEADER.

The FMDI_HEADER table consists of various fields, each holding specific information or linking keys about Direct Input from Budget: Document Header Data data available in SAP. These include TCODE (Char 20), FM_AREA (Financial Management Area), VERSION (Planning/budgeting version), FISC_YEAR (Character field, length 4)... 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. .

FMDI_HEADER structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP FMDI_HEADER structure 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 FMDI_HEADER 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
RCTYPECharacter field of length 1 CHAR_LG_01CHAR1CHAR_LG_01
TCODEChar 20 CHAR20CHAR20CHAR20
FM_AREAFinancial Management Area FIKRSCHAR4Assigned to domainFIKRSFIK
VERSIONPlanning/budgeting version BP_VERSIONCHAR3Assigned to domainALPHABP_VERSIONBP2
FISC_YEARCharacter field, length 4 CHAR_LG_04CHAR4CHAR_LG_04
PERIOD3-Byte field CHAR3CHAR3CHAR3
FUNDFund BP_GEBERCHAR10Assigned to domainBP_GEBERFIC
BDGT_SUBTYPEBudget Subtype BP_SUBVOCHAR4Assigned to domainBP_SUBVO
OVERALLOverall values too BP_WGESCHAR1X
AUTORELEASEAutomatic Release FM_BK_AUTORELEASECHAR1X
RESPONSIBLEPerson Responsible for Planning/Budgeting BP_VERANTCHAR20VERABBPV
DOC_DATECharacter Field Length = 10 CHAR10CHAR10CHAR10
DOC_TEXTItem Text SGTXTCHAR50TEXT50
TEXT_NAMEText Name BP_TDNAMCHAR32CHAR32
TRANS_CURRTransaction Currency TWAERCUKY5Assigned to domainWAERSFWS
POSTING_DATECharacter Field Length = 10 CHAR10CHAR10CHAR10
POSTING_PERIOD3-Byte field CHAR3CHAR3CHAR3
RPUBLAWCharacter field, length 7 CHAR7CHAR7CHAR7
RLEGISCharacter field of length 1 CHAR_LG_01CHAR1CHAR_LG_01
RCOHORTCharacter field, length 4 CHAR_LG_04CHAR4CHAR_LG_04
VALUE_DATECharacter Field Length = 10 CHAR10CHAR10CHAR10
VALKEYCharacter Field Length = 10 CHAR10CHAR10CHAR10
DOCTYPEBudget entry document type BUED_DOCTYPECHAR4Assigned to domainBUED_DOCTYPEDOTY

Key field Non-key field



How do I retrieve data from SAP structure FMDI_HEADER using ABAP code?

As FMDI_HEADER is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on FMDI_HEADER as there is no data to select.

How to access SAP table FMDI_HEADER

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

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