WDY_ELEM SAP (Element List of a Screen) Structure details

Dictionary Type: Structure
Description: Element List of a Screen




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




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

WDY_ELEM is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Element List of a Screen" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_WDY_ELEM TYPE WDY_ELEM.

The WDY_ELEM table consists of various fields, each holding specific information or linking keys about Element List of a Screen data available in SAP. These include NAME (Name of a Screen Element), ELEMENT_OF (Name of container (external interface)), ABAP_NAME (Name of a Screen Element), LINE (Line where the field begins).. 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:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can Be Enhanced (Deep)


SAP WDY_ELEM structure 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
TYPEType of Screen Element (External Type) SCRNTYPECHAR11SCRNTYPE
NAMEName of a Screen Element SCRFNAMECHAR132DYNFNAM
ELEMENT_OFName of container (external interface) SCRCNAMECHAR132DYNFNAM
ABAP_NAMEName of a Screen Element SCRFNAMECHAR132DYNFNAM
LINELine where the field begins WDYSCRNLINEINT410
COLColumn at which the field begins WDYSCRNCOLNINT410
LENGTHDefined length WDYSCRNDEFLGINT410
VISLENGTHVisible (visualized) length WDYSCRNVISLGINT410
HEIGHTHeight WDYSCRNHIGHINT410
TEXTText/template for a screen element SCRFSTXGCHAR132DYNFTEXT
LOOP_BLOCKLoop: Size (number of lines) of a loop repeat block SCRCLOOPNUMC3NUMC3
LOOP_TYPELoop: Loop type (FIX or VAR) SCRFLTYPCHAR3SCRPCHA3
LOOP_DISPLoop: Number of loop block repeats SCRCLOOPDPNUMC3NUMC3
LABELLEFTAs label on left SCRPLABELLCHAR1SCRPFLAG
LABELRIGHTAs label on right SCRPLABELRCHAR1SCRPFLAG
INPUT_FLDInput expected for this field SCRFFEINCHAR1SCRPFLAG
OUTPUT_FLDOutput expected for this field SCRFFOUTCHAR1SCRPFLAG
OUTPUTONLYPure output field SCRFOOUTCHAR1SCRPFLAG
FOREIGNKEYForeign key check of Dictionary is active SCRFFFKYCHAR1SCRPFLAG
REQU_ENTRYEntries in the Field SCRFFOBLCHAR1SCRPFOBL
POSS_ENTRYPoss. entries pushbutton and modification of poss. entries SCRFCMBPRMCHAR1SCRPWHILFT
DROPDOWNDropdown SCRFDRDOWNCHAR1SCRPCOTYPE
DROPFROMEntry help: Source for values SCRFCMBFRMCHAR1SCRPCMBFRM
STAR_ENTRY* Entry SCRFFSTRCHAR1SCRPFLAG
BRIGHTDisplay bright SCRFHELLCHAR1SCRPFLAG
INVISIBLEInvisible display SCRFUNSICHAR1SCRPFLAG
2_DIMENSTwo-dimensional display for input/output fields SCRFNO3DCHAR1SCRPFLAG
TC_SEL_LNSTable control: Line selectability (NONE, SINGLE, MULTIPLE) SCRCTLSELLCHAR10SYCHAR10
TC_SEL_CLSTable control: Column selectability (NONE, SINGLE, MULTIPLE) SCRCTLSELCCHAR10SYCHAR10
TC_LSEL_CLTable control: with selection column SCRFTLMARKCHAR1SCRPCHA1
TC_SELCOLTable Control Field: Line selection field SCRNTCSELCHAR1SCRPFLAG
TC_TITLETable control: With title line SCRFTLTITCHAR1SCRPCHA1
TC_HEADERTable control: With column headers SCRFTLUEBCHAR1SCRPCHA1
TC_TITLE_FTable Control Field: Title Field SCRNTCTITCHAR1SCRPFLAG
TC_HEADINGTable control field: Column header field SCRNTCHEADCHAR1SCRPFLAG
TC_TABTYPETable control: Table type (ENTRY or SELECTION) SCRCTLTYPECHAR10SYCHAR10
TC_SEPAR_VTable control: With vertical separators SCRFTLTREVCHAR1SCRPCHA1
TC_SEPAR_HTable control: With horizontal separators SCRFTLTRENCHAR1SCRPCHA1
BUTT_RIGHTCheckbox/radio button to right of its text field SCRNBUTTRTCHAR1SCRPFLAG
PUSH_FCODEFunction code for pushbutton SCRFFCODCHAR20GUI_FUNC
PUSH_FTYPEType of function code for pushbutton SCRFPTYPECHAR1CUA_TYPE
FLD_FORMATField format (ABAP Dictionary data type) SCRFTYPECHAR4SCRPTYPE
FROM_DICTField from ABAP Dictionary SCRFDICTCHAR1SCRPDICF
ROLLINGScrollable input/output field SCRFSCROLLCHAR1SCRPFLAG
ICON_NAMEIcon: Name SCRFICON_NCHAR30SCRPICON_N
ICON_QINFOIcon: Quick info text (not standard text) SCRNICON_QCHAR30SCRPICON_Q
ICON_QSPECIcon: Flag 'special quick info text' SCRNICON_SCHAR1SCRPFLAG
GROUP1Modification group 1 SCRFGRP1CHAR3SCRPCHA3
GROUP2Modification group 2 SCRFGRP2CHAR3SCRPCHA3
GROUP3Modification group 3 SCRFGRP3CHAR3SCRPCHA3
GROUP4Modification group 4 SCRFGRP4CHAR3SCRPCHA3
UP_LOWERUpper/lower case entry SCRFFGKSCHAR1SCRPFLAG
NO_TEMPLEnter all characters in CHAR fields without template SCRFFOSBCHAR1SCRPFLAG
REF_FIELDReference field SCRFWAERCHAR132DYNFNAM
REL_COL Column Relative to Container0
REL_LINE Line Relative to Container0
IS_CONTAINER Flag Whether It Is a Container0

Key field Non-key field



How do I retrieve data from SAP structure WDY_ELEM using ABAP code?

As WDY_ELEM is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on WDY_ELEM as there is no data to select.

How to access SAP table WDY_ELEM

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