SAP FMROLINE FM Recurring Obligations - schedule lines Table data and field list

FMROLINE is a standard SAP Table which is used to store FM Recurring Obligations - schedule lines data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMROLINE table consists of various fields, each holding specific information or linking keys about FM Recurring Obligations - schedule lines data available in SAP. These include BELNR (Document Number for Earmarked Funds), PERIOD_NBR (Execution period number), DUE_DATE (Schedule due date), STATUS (Schedule line status)... 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. .

FMROLINE 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 FMROLINE 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 FMROLINE 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
BELNRDocument Number for Earmarked Funds KBLNRCHAR10KBLKALPHAKBLNRKBL
PERIOD_NBRExecution period number FMRO_PERIOD_NBRNUMC3FMROHDRNUMC3
DUE_DATESchedule due date FMRO_DUE_DATEDATS8DATS
STATUSSchedule line status FMRO_LINE_STATUSCHAR1FMRO_LINE_STATUS
BUDATPosting Date in the Document BUDATDATS8DATUM
BLDATDocument Date in Document BLDATDATS8DATUM
KERDATEntry date KBLERDATDATS8DATUM
RBELNRFM Recurring Obligation - posted document number FMRO_KBLNRCHAR10Assigned to domainALPHAKBLNR
MANUALManually input recurring obligation line FMRO_MANUALCHAR1XFELD
BLOCKBlock schedule line FMRO_BLOCKCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMROLINE
INTO CORRESPONDING FIELDS OF WA_FMROLINE
WHERE...

How to access SAP table FMROLINE

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

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