ICON SAP (Icons table) Table details

Dictionary Type: Table
Description: Icons table




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




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

ICON is a standard SAP Table which is used to store Icons table data and is available within R/3 SAP systems depending on the version and release level.

The ICON table consists of various fields, each holding specific information or linking keys about Icons table data available in SAP. These include NAME (Name of an Icon), OLENG (Icon: Output length), BUTTON (Icon suitable for pushbutton), STATUS (Icon suitable for status display).. 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: S - System table, maint. only by SAP, change = modification
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = ICONT


SAP ICON 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
IDIcon in text fields (substitute display, alias) ICON_DCHAR4ICON
NAMEName of an Icon ICONNAMECHAR30ICONNAME
OLENGIcon: Output length ICONLENGTHINT13ICONLENGTH
BUTTONIcon suitable for pushbutton ICON_BCHAR1FLAG
STATUSIcon suitable for status display ICON_SCHAR1FLAG
MESSAGEIcon suitable for message ICON_MCHAR1FLAG
FUNCTIONIcon suitable for function key ICON_FCHAR1FLAG
TEXTFIELDIcon suitable key word ICON_TCHAR1FLAG
INTERNALIcon internal format ICON_INTCHAR8ICON_INT
LOCKEDLocked icons ICON_LCHAR1FLAG
I_CLASSIcon class (system, special, ...) ICON_CLASSNUMC1NUMC01
I_GROUPIcon group (message, function ...) ICON_GROUPNUMC1NUMC01
I_MEMBERIcon classification ICON_MEMNUMC2NUMC02

Key field Non-key field



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

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

SELECT SINGLE *
FROM ICON
INTO CORRESPONDING FIELDS OF WA_ICON
WHERE...

How to access SAP table ICON

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