Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get the 4 digit number associated with a SAP icon ( ICON_MAIL )

Former Member
0 Kudos

Hi Friends,

Could anyone please tell me how to get the 4 digit number associated with a SAP icon ( ICON_MAIL ).

eg: - For ICON_GREEN_LIGHT the four digit id code is '@08@' (which you can get from ICON table )and the associated 4 digit number is'1003'.

Similarly I want to get the 4 digit number for ICON_MAIL(e-mail icon)

<b><REMOVED BY MODERATOR></b>

Ashiq

Message was edited by:

Alvaro Tejada Galindo

3 REPLIES 3

former_member583013
Active Contributor
0 Kudos

You can use this report...It's not mine...


REPORT zdummy_atg_2.

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.

Greetings,

Blag.

Former Member
0 Kudos

Hi

Check table ICON

Regards

Gregory

former_member194669
Active Contributor
0 Kudos

Hi,

SE11--> select type group radio button --> enter ICON and press display