SAP GRFNFORMFIELDS Configurable Form Group and Fields Assignment Table data and field list

GRFNFORMFIELDS is a standard SAP Table which is used to store Configurable Form Group and Fields Assignment data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The GRFNFORMFIELDS table consists of various fields, each holding specific information or linking keys about Configurable Form Group and Fields Assignment data available in SAP. These include FORM_UIBB (UIBB ID), FIELD (Field ID), DISPLAY_TYPE (Display Type), FIELD_ALIGNMENT (Field Alignment)... 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. .

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

Text table = GRFNFORMFIELDST

Text table = GRFNFORMFIELDST


SAP GRFNFORMFIELDS 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 GRFNFORMFIELDS 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
FORM_UIBBUIBB ID GRFN_UIBBCHAR30GRFNFORMGRFN_UIBB
FIELDField ID GRFN_FLDCHAR30GRFNUIBBFLDGRFN_FLD
DISPLAY_TYPEDisplay Type GRFN_UI_DISPLAY_TYPECHAR2GRFN_UI_DISPLAY_TYPE
FIELD_ALIGNMENTField Alignment GRFN_UI_FIELD_ALIGNMENTNUMC3GRFN_UI_FIELD_ALIGNMENT
FIELD_LAYOUTDATALayout Data GRFN_UI_FIELD_LAYOUT_DATACHAR3GRFN_UI_FIELD_LAYOUT_DATA
FIELD_INDEXIndex GRFN_UI_INDEXNUMC3NUM03
EVENT_IDEvent ID GRFN_UI_EVENT_IDCHAR30
DIALOG_TYPEDialog Type of Action GRFN_UI_DIALOG_TYPECHAR3GRFN_UI_DIALOG_TYPE
DIALOG_UIBBDialog UIBB if Necessary GRFN_UI_DIALOG_UIBBCHAR30Assigned to domainGRFN_UIBB

Key field Non-key field



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

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

SELECT SINGLE *
FROM GRFNFORMFIELDS
INTO CORRESPONDING FIELDS OF WA_GRFNFORMFIELDS
WHERE...

How to access SAP table GRFNFORMFIELDS

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

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