SAP Icons on report

Write SAP ICONS on your reports

This program list for you all the SAP ICONS that can be used in your reports. Take note that the SAP ICONS are used for interative reports. It can be display on screens. You will only see the icon names when you do a print out.

REPORT ZICONS .
TABLES: ICON.
INCLUDE .
FIELD-SYMBOLS: .

* When displaying ICON, specify the maximum length of 4
WRITE: / 'ICON IN WRITE STATEMENT ', (4) ICON_ALARM.

SKIP.
WRITE: / 'List of SAP ICONS, minimum length 2, maximum length 4.'.
SKIP.
SELECT * FROM ICON.
ASSIGN (ICON-NAME) TO .
WRITE: /(5) , 20 '@',21 ICON-ID+1(2),23 '@',ICON-OLENG,
ICON-BUTTON,ICON-STATUS,ICON-MESSAGE,ICON-FUNCTION,
ICON-NAME.
ENDSELECT.

0 comments: