SAP FMAPSTAT FIFM: System Status for FIFM Acct Asst Objects Table data and field list

FMAPSTAT is a standard SAP Table which is used to store FIFM: System Status for FIFM Acct Asst Objects data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMAPSTAT table consists of various fields, each holding specific information or linking keys about FIFM: System Status for FIFM Acct Asst Objects data available in SAP. These include FIKRS (Financial Management Area), HIVERS (FIFM: Hierarchy Version), GJAHR (Fiscal Year), CTR_OBJNR (Object number)... 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. .

FMAPSTAT 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: Not classified


SAP FMAPSTAT 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 FMAPSTAT 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
FIKRSFinancial Management Area FIKRSCHAR4FM01FIKRSFIK
HIVERSFIFM: Hierarchy Version FM_HIVERSCHAR10FM_HIVERS
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
CTR_OBJNRObject number J_OBJNRCHAR22ONR00J_OBJNRONR
POSITInternal commitment item (8 chars) BP_POSITCHAR8BP_POSIT
GEBERFund BP_GEBERCHAR10FMFINCODEBP_GEBERFIC
DATBISFM: Valid to date FM_DATBISDATS8DATUMFM_DATBIS
STSMAStatus Profile J_STSMACHAR8TJ20J_STSMA
DATABFM: Valid from date FM_DATABDATS8DATUMFM_DATAB
ISTAT1System status J_ISTATCHAR5TJ02J_ISTAT
ISTAT2System status J_ISTATCHAR5TJ02J_ISTAT
ISTAT3System status J_ISTATCHAR5TJ02J_ISTAT
ISTAT4System status J_ISTATCHAR5TJ02J_ISTAT
ISTAT5System status J_ISTATCHAR5TJ02J_ISTAT
ESTAT1User Status J_ESTATCHAR5TJ30J_ESTAT
ESTAT2User Status J_ESTATCHAR5TJ30J_ESTAT
ESTAT3User Status J_ESTATCHAR5TJ30J_ESTAT
ESTAT4User Status J_ESTATCHAR5TJ30J_ESTAT
ESTAT5User Status J_ESTATCHAR5TJ30J_ESTAT

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMAPSTAT
INTO CORRESPONDING FIELDS OF WA_FMAPSTAT
WHERE...

How to access SAP table FMAPSTAT

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

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