SAP EAMS_VISOBJCOMPT Visual Object Component Symbol/Icon Customizing Table data and field list

EAMS_VISOBJCOMPT is a standard SAP Table which is used to store Visual Object Component Symbol/Icon Customizing data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The EAMS_VISOBJCOMPT table consists of various fields, each holding specific information or linking keys about Visual Object Component Symbol/Icon Customizing data available in SAP. These include VISUAL_OBJ_NAME (Visual Objects Name), VISUAL_OBJ_COMP (Visual Object Components), VIS_OBJCOMP_TYPE (Marker Type), VIS_OBJCOMP_SYMB (Visual Symbol Shape (circle, triangle))... 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. .

EAMS_VISOBJCOMPT table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP EAMS_VISOBJCOMPT 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 EAMS_VISOBJCOMPT 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
VISUAL_OBJ_NAMEVisual Objects Name EAMS_VIS_OBJ_NAMECHAR10EAMS_VISOBJECTEAMS_VISUAL_OBJ_NAME_DOM
VISUAL_OBJ_COMPVisual Object Components EAMS_VIS_OBJ_COMPCHAR10EAMS_VIS_OBJ_COMP_DOM
VIS_OBJCOMP_TYPEMarker Type EAML_MARKER_TYPECHAR2EAML_MARKER_TYPE
VIS_OBJCOMP_SYMBVisual Symbol Shape (circle, triangle) EAMS_VISUAL_SYMB_SHAPECHAR20EAMS_VIS_SYMB_SHAPE_DOM
VIS_OBJ_COMP_CLRVisual Color for Symbol EAMS_VISUAL_SYMB_COLORCHAR10EAMS_VISUAL_COLOR_DOM
VIS_OBJ_COMP_SIZVisual Icon Size/Width EAMS_VISUAL_SYMB_SIZEINT13EAMS_VISUAL_SIZE_DOM
VIS_OBJ_ICON_URLLAM Icon EAMS_VIS_LAM_ICONCHAR64WDG_UR_WEB_ICON_ALIASEAMS_VB_GET_WEBICONS

Key field Non-key field



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

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

SELECT SINGLE *
FROM EAMS_VISOBJCOMPT
INTO CORRESPONDING FIELDS OF WA_EAMS_VISOBJCOMPT
WHERE...

How to access SAP table EAMS_VISOBJCOMPT

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

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