SAP FMFGRLAYOUT_DEF Definition for reporting layout Table data and field list

FMFGRLAYOUT_DEF is a standard SAP Table which is used to store Definition for reporting layout data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMFGRLAYOUT_DEF table consists of various fields, each holding specific information or linking keys about Definition for reporting layout data available in SAP. These include LAYOUTID (Reporting Layout ID), SEQNR (Sequence Number for Reporting), LINENR (Reporting Line Number), PARASET (Define Parameter set for reporting)... 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. .

FMFGRLAYOUT_DEF table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)

Text table = FMFGRLAYOUT_TEXT


SAP FMFGRLAYOUT_DEF 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 FMFGRLAYOUT_DEF 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
LAYOUTIDReporting Layout ID FMFGRPT_LAYOUTIDCHAR10FMFGRLAYOUTCHAR10
SEQNRSequence Number for Reporting FMFGRPT_SEQNRNUMC6NUM6
LINENRReporting Line Number FMFGRPT_LINENRCHAR6CHAR6
PARASETDefine Parameter set for reporting FMFGRPT_PARASETCHAR2CHAR2
PARA01Parameter 1 for Reporting FMFGRPT_PARA01CHAR20FMFGRPT_PARAXX
PARA02Parameter 2 for Reporting FMFGRPT_PARA02CHAR20FMFGRPT_PARAXX
PARA03Parameter 3 for Reporting FMFGRPT_PARA03CHAR20FMFGRPT_PARAXX
PARA04Parameter 4 for Reporting FMFGRPT_PARA04CHAR20FMFGRPT_PARAXX
PARA05Parameter 5 for Reporting FMFGRPT_PARA05CHAR20FMFGRPT_PARAXX
PARA06Parameter 6 for Reporting FMFGRPT_PARA06CHAR20FMFGRPT_PARAXX
PARA07Parameter 7 for Reporting FMFGRPT_PARA07CHAR20FMFGRPT_PARAXX
PARA08Parameter 8 for Reporting FMFGRPT_PARA08CHAR20FMFGRPT_PARAXX
PARA09Parameter 9 for Reporting FMFGRPT_PARA09CHAR20FMFGRPT_PARAXX
PARA10Parameter 10 for Reporting FMFGRPT_PARA10CHAR20FMFGRPT_PARAXX
PARA11Parameter 11 for Reporting FMFGRPT_PARA11CHAR20FMFGRPT_PARAXX
PARA12Parameter 12 for Reporting FMFGRPT_PARA12CHAR20FMFGRPT_PARAXX
PARA13Parameter 13 for Reporting FMFGRPT_PARA13CHAR20FMFGRPT_PARAXX
PARA14Parameter 14 for Reporting FMFGRPT_PARA14CHAR20FMFGRPT_PARAXX
PARA15Parameter 15 for Reporting FMFGRPT_PARA15CHAR20FMFGRPT_PARAXX

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMFGRLAYOUT_DEF
INTO CORRESPONDING FIELDS OF WA_FMFGRLAYOUT_DEF
WHERE...

How to access SAP table FMFGRLAYOUT_DEF

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

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