SAP Help List of available SAP icons and there code









SAP icons and some ABAP code to display them

Below is the ABAP code to produce a list of icons including what they look like, name and code.

face="Arial monospaced for SAP">*&-------------------------------------------------------------*
*& Report  ZICONS                                              *
*&                                                             *
*&-------------------------------------------------------------*
*&                                                             *
*&                                                             *
*&-------------------------------------------------------------*

REPORT ZICONS.

TABLES: ICON.
INCLUDE <ICON>.
FIELD-SYMBOLS: <F>.

SELECT * FROM ICON.
   ASSIGN (ICON-NAME) TO <F>.
   WRITE:   /(5) <F>, 20 '@',21 ICON-ID+1(2),23 '@',ICON-OLENG,
            ICON-BUTTON,ICON-STATUS,ICON-MESSAGE,ICON-FUNCTION,
            ICON-NAME.
ENDSELECT.