sapdev logo background
sapdev logo sapdev logo
Comments

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.

*&-------------------------------------------------------------*
*& 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.



comments powered by Disqus