SAP FMIA Actual Line Item Table for Funds Management Table data and field list

FMIA is a standard SAP Table which is used to store Actual Line Item Table for Funds Management data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMIA table consists of various fields, each holding specific information or linking keys about Actual Line Item Table for Funds Management 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. .

FMIA 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 or numeric)


SAP FMIA 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 FMIA 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 RVERSCHAR3T894ALPHARVERSGVS
RYEARFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
RTCURCurrency Key RTCURCUKY5TCURCWAERSFWS
POPERPosting period POPERNUMC3POPERPOPR
DOCCTDocument Type DOCCTCHAR1DOCCTGCT
DOCNRAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
DOCLNDocument line DOCLNCHAR3DOCLN
RBUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
RFISTLFunds Center FISTLCHAR16Assigned to domainFISTLFIS
RFONDSFund BP_GEBERCHAR10Assigned to domainBP_GEBERFIC
PFONDSPartner Fund FM_PFUNDCHAR10Assigned to domainBP_GEBERPARTNER_FUND
RFIPEXCommitment Item FM_FIPEXCHAR24Assigned to domainFM_FIPEXFPS
RWRTTPValue Type FM_WRTTPCHAR2FM_WRTTP
RBTARTAmount type FM_BTARTCHAR4FM_BTART
RGNJHRYear of Cash Effectivity GNJHRNUMC4GJAHRGJAHRGNJHR
RHKONTGeneral Ledger Account HKONTCHAR10Assigned to domainALPHASAKNR
RSTATSFunds Management Statistical Indicator FM_STATSCHAR1FM_STATS
RCFLEVCarryforward level FM_CFLEVCHAR1FM_CFLEV
ROBJNRZObject number J_OBJNRCHAR22Assigned to domainJ_OBJNRONR
RVRGNGCO Business Transaction CO_VORGANGCHAR4Assigned to domainJ_VORGANG
RUSERDIMCustomer Field for FM Actual and Commitment Data FM_USERDIMCHAR10CHAR10
RFAREAFunctional Area FM_FAREACHAR16Assigned to domainFKBERFBE
RMEASUREFunded Program FM_MEASURECHAR24Assigned to domainFM_MEASUREFM_MEASURE
LOGSYSLogical system LOGSYSCHAR10TBDLSALPHALOGSYS
GRANT_NBRGrant GM_GRANT_NBRCHAR20ALPHAGM_GRANT_NBRGM_GRANT_NBRGRANTS_GENERIC
RBUSABusiness Area GSBERCHAR4TGSBGSBERGSB
TSLValue in Transaction Currency VTCUR9CURR17(2) WERTV9
HSLValue in local currency VLCUR9CURR17(2) WERTV9
SGTXTItem Text SGTXTCHAR50TEXT50
AUTOMIndicator: Automatic posting lines AUTOMCHAR1TEXT1
DOCTYFI-SL Document Type DOCTYCHAR2T889DOCTYBAR
ACTIVBusiness Transaction GLVORCHAR4CHAR4
BUDATPosting Date in the Document BUDATDATS8DATUM
WSDATValue Date for Currency Translation WSDATDATS8DATUMWSD
REFDOCNRAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
REFRYEARFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
REFDOCLNNumber of Line Item Within Accounting Document BUZEINUMC3BUZEIBUZ
REFDOCCTDocument Type DOCCTCHAR1DOCCTGCT
REFACTIVBusiness Transaction GLVORCHAR4CHAR4
CPUDTDay On Which Accounting Document Was Entered CPUDTDATS8DATUM
CPUTMTime of Entry CPUTMTIMS6UZEIT
USNAMUser name USNAMCHAR12Assigned to domainXUBNAMEUSR
AWTYPReference Transaction AWTYPCHAR5TTYPAWTYP
AWORGReference Organizational Units AWORGCHAR10AWORG
FIKRSFinancial Management Area FIKRSCHAR4Assigned to domainFIKRSFIK
DISTKEYDistribution keys FM_DISTKEYCHAR4FM_DISTKEY
KOKRSControlling Area KOKRSCHAR4Assigned to domainCACCDCAC
BUDGET_PDFM: Budget Period FM_BUDGET_PERIODCHAR10Assigned to domainFM_BUDGET_PERIODBUDPER
.INCLU--AP 0
RVBUNDCompany ID of trading partner RASSCCHAR6Assigned to domainALPHARCOMPPGS

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMIA
INTO CORRESPONDING FIELDS OF WA_FMIA
WHERE...

How to access SAP table FMIA

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

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

Related SAP tables and the relationships to FMIA

    GLFF - Fixed Fields in FI-SL
        COFIT - Totals Records for Reconciliation Ledger
    FBICRC002A - ICRC: GL Accounts: Documents
    FBICRC002P - Not in use
        FBICRC003T - ICRC: Open Items Customers/Vendors: Totals
            FBICRC003A - ICRC: Open Items Customers/Vendors: Documents
            FBICRC003P - Not in use
        FILCT - FI-LC: Global totals table with 2 object tables
            FILCA - FI-LC: Actual journal entry table with 2 object ta
            FILCP - FI-LC: Plan line items for object table
        FMCCAVCT - Totals Table
            FMCCAVCA - Actual line item table
    COFIS - Actual line items for reconciliation ledger
            FMCCAVCP - Plan line items table
        FMIT - Totals Table for Funds Management
            FMIA - Actual Line Item Table for Funds Management
            FMIP - Plan Line Items Table for Funds Management
        FMUSFGFACTS1T - Summary table
            FMUSFGFACTS1A - 4Actual line item table
            FMUSFGFACTS1P - Plan line items table
        FMUSFGFACTS2T - Summary table
            FMUSFGFACTS2A - Actual line item table
            FMUSFGFACTS2P - Plan line items table
    COFIP - Single plan items for reconciliation ledger
        FMUSFGT - Summary table for US Federal Government
            FMUSFGA - Actual line item table for US Federal Government.
            FMUSFGP - Plan line items table
        GLFUNCT - Totals Table for Cost of Sales Accounting
            GLFUNCA - Actual Line Items Table for Cost of Sales Accounti
            GLFUNCP - Plan Line Items Table for Cost of Sales Accounting
            GLFUNCU - Rollup line item tables with function area for IDE
            GLFUNCV - Rollup plan line items table with function area fo
        GLPCT - EC-PCA: Totals Table
            GLPCA - EC-PCA: Actual Line Items
        ECMCT - SAP Cons.: Totals Table
            GLPCP - EC-PCA: Plan Line Items
        GLT0 - G/L account master record transaction figures
            GLP0 - Local Logical General Ledger Plan Line Items
        GLT1 - Local General Ledger Summary Table
            GLS1 - Local Logical General Ledger Actual Line Items
            GLP1 - Local Logical General Ledger Plan Line Items
        GLT2 - Consolidation totals table
            GLS2 - Global logical Consolidation line items
            GLP2 - Global Special Purpose Ledger Plan Line Item Table
        GLT3 - Summary Data Preparations for Consolidation
    ECMCA - SAP Cons.: Journal Entry Table (Actual)
        GMAVCT - Summary table
            GMAVCA - Actual line item table
            GMAVCP - Plan line items table
        GMIT - Summary table
            GMIA - Actual Line Item Table
            GMIP - Plan line items table
        JVPSC01T - Summary table
            JVPSC01A - Actual line item table
            JVPSC01P - Plan line item table
        JVTO1 - JV Summary Table with Objects
        FBICRC001T - ICRC: Open Items GL Accounts: Totals
    JVSO1 - JV LI Table with Objects for JVTO1
    JVPO1 - JVA: Plan Line Items
        JVTO2 - JV Billing FI-SL Summary Table
            JVSO2 - JV Billing FI-SL Line Item
        TRACTSLT - Totals Table
            TRACTSLA - Actual Line Item Table
            TRACTSLP - Plan Line Items Table
        ZSAWT - Summary table
            ZSAWA - Actual line item table
            ZSAWP - Plan line items table
    FBICRC001A - ICRC: Open Items GL Accounts: Documents
        ZSEMBPST - Summary table
            ZSEMBPSA - Actual line item table
            ZSEMBPSP - Plan line items table
        ZSPLITT -
            ZSPLITA -
            ZSPLITP -
        ZZ001T - Summary Table
            ZZ001A - Actual Line Item Table
            ZZ001P - Plan Line Items Table
        ZZLINET - Summary table
    FBICRC001P - Not in use
    ZZLINEA - Actual line item table
    ZZLINEP - Plan line items table
        ZZSL01T - Summary table
            ZZSL01A - Actual line item table
            ZZSL01P - Plan line items table
        ZZSPECT - Summary table
            ZZSPECA - Actual line item table
            ZZSPECP - Plan line item table
        ZZSPL01T -
            ZZSPL01A -
        FBICRC002T - ICRC: GL Accounts: Totals
            ZZSPL01P -