Mar 28, 2014

SAP Icons and Codes


A sample program to display all Icons in 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.




~o~