|
Written by Anon.
|
|
Thursday, 10 May 2007 |
|
This program lists 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 displayed on screens. You will only see the icon names when you do a print out. PS: There is a standard SAP report listing the icons as well..... RSTXICON
REPORT ZICONS . TABLES: ICON. INCLUDE <ICON>. FIELD-SYMBOLS: <F>. * 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 <F>. WRITE: /(5) <F>, 20 '@',21 ICON-ID+1(2),23 '@',ICON-OLENG, ICON-BUTTON,ICON-STATUS,ICON-MESSAGE,ICON-FUNCTION, ICON-NAME. ENDSELECT.
Related Items:
|