EFCLSTR SAP (Form Class Structure) Table details

Dictionary Type: Table
Description: Form Class Structure




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




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

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

The EFCLSTR table consists of various fields, each holding specific information or linking keys about Form Class Structure data available in SAP. These include ID (Internal: Node ID), HIER_LEVEL (Node level), FORM_LEVEL (Form level), TAB_OUTPUT (Table name for form output structure).. 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: W - System table, contents transportable via separate TR objects
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced

Text table = EFCLSTRT


SAP EFCLSTR 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
FORMCLASSForm Class FORMCLASSCHAR30EFCLFORMCLASSFCL
IDInternal: Node ID SEU_IDNUMC6SEU_ID
HIER_LEVELNode level SEU_LEVELNUMC2SEU_LEVEL
FORM_LEVELForm level FORMLEVELCHAR10CHAR10
TAB_OUTPUTTable name for form output structure TAB_OUTPUTCHAR30DD02LAS4TAB
DESCRIPTForm Level Description DESCR_FLEVCHAR50TEXT50
DDTYPE_STRUCDDIC Type for Form Level EFG_DTE_DDTYPE_FL_STRUCCHAR30OBJECTNAME
DDTYPE_TABTYPEDDIC (Table) Type for Form Level EFG_DTE_DDTYPE_FL_TABCHAR30OBJECTNAME

Key field Non-key field



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

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

SELECT SINGLE *
FROM EFCLSTR
INTO CORRESPONDING FIELDS OF WA_EFCLSTR
WHERE...

How to access SAP table EFCLSTR

Within an ECC or HANA version of SAP you can also view further information about EFCLSTR 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!