EFRMSTR SAP (Application Form Structure) Table details

Dictionary Type: Table
Description: Application Form Structure




ABAP Code to SELECT data from EFRMSTR
Related tables to EFRMSTR
Access table EFRMSTR




Table field list including key, data, relationships and ABAP select examples

EFRMSTR is a standard SAP Table which is used to store Application Form Structure data and is available within R/3 SAP systems depending on the version and release level.

The EFRMSTR table consists of various fields, each holding specific information or linking keys about Application Form Structure data available in SAP. These include FORMKEY (Application form), ID (Internal: Node ID), HIER_LEVEL (Node level), FORM_LEVEL (Form level).. 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. .

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP EFRMSTR table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
CLIENTClient MANDTCLNT3T000MANDT
FORMKEYApplication form FORMKEYCHAR30EFRMFORMKEYFOM
IDInternal: Node ID SEU_IDNUMC6SEU_ID
HIER_LEVELNode level SEU_LEVELNUMC2SEU_LEVEL
FORM_LEVELForm level FORMLEVELCHAR10CHAR10
LEVEL_NOLocal ID LOC_IDNUMC3NUMC3
TAB_OUTPUTTable name for form output structure TAB_OUTPUTCHAR30Assigned to domainAS4TAB
TEXT_NAMEName TDOBNAMECHAR70TDOBNAME
EXIT_SORTUser Exit Name (Before Loop) EXIT_SORTCHAR20RF_USER_EXIT
EXIT_OUTPTCustomer Exit within a Form Level Loop EXIT_OUTPTCHAR20RF_USER_EXIT
EXIT_AFTEREnhancement after Loop over a Form Level EXIT_AFTERCHAR20RF_USER_EXIT
NODE_INACTSet Level in Application Form to Inactive NODE_INACTCHAR1RF_KENNZX
WINDOWWindow TDWINDOWCHAR8TDELEMFORM
WIN_TYPESpecification of Area in Main Window (Top, Body, Bottom) WIN_TYPECHAR10WIN_TYPE
FUNCTIONParameter function in the function module write_form FORM_FUNCTCHAR10FORM_FUNCT
STAND_TEXTGeneral checkbox: X or SPACE RF_KENNZXCHAR1RF_KENNZX
DESCRIPTForm level description (form level or text element) DESCR_FSTRCHAR50TEXT50
DDTYPE_STRUCDDIC Type for Form Level EFG_DTE_DDTYPE_FL_STRUCCHAR30OBJECTNAME

Key field Non-key field



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

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

SELECT SINGLE *
FROM EFRMSTR
INTO CORRESPONDING FIELDS OF WA_EFRMSTR
WHERE...

How to access SAP table EFRMSTR

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

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


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!