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: 

All Icons and their function codes

Former Member
0 Kudos

Hi all!

How can we find all the available icons and their related function codes? I have watched PRINT icon having different function codes in different ALV reports.

Edited by: Jayasri P. on Jan 7, 2008 12:44 PM

1 ACCEPTED SOLUTION

mnicolai_77
Active Participant
0 Kudos

hi,

u can find all icon in the table named ICON or into 2 include

include <icon>.

include >icon<.

bye

Marco

7 REPLIES 7

mnicolai_77
Active Participant
0 Kudos

hi,

u can find all icon in the table named ICON or into 2 include

include <icon>.

include >icon<.

bye

Marco

SantoshKallem
Active Contributor

execute the program SHOWICON

Regards

Santhosh reddy

Reward if useful

Former Member
0 Kudos

Hi,

Please refer to the type-pools ICON.

Thanks,

Sri.

i048168
Advisor
Advisor

Hi,

Just run the program RSTXICON to get all the icons and their function codes.

Regards

Vadi

Former Member
0 Kudos

Hi Jayasri,

You can find all the function codes of icons in include <icon>.

In SE38 define include <icon>. and double click on <icon> then u find the all function codes.

glio_ad
Active Participant
0 Kudos

Hello.

In order to use them in the GUI status of your ALV do the following:

go copy the status "STANDARD_FULLSCREEN" of the program "SPLKKBL" to your program and change it.

If you go to your own status now, under "Application Toolbar", you can define there your own function codes and use them in your code. As far as the icon is concerned, when you will first set the function code, the system will pop-up a screen in which you can define the icon you want to assign to that function code. You just have to do an F4 on the respective field of the pop-up and a new pop-up will show you all the available standard icons of the system that are available for use in your own GUI status. There, the name of each icon (for example, ICON_OKAY, or ICON_CANCEL etc) can be used to display icons in standard ABAP lists. In this case you have to add in your report the following line

TYPE-POOLS: ICON.

and then write something like this:

write:/ icon_okay as icon.

Reward please if it help.

Regards,

George

Former Member
0 Kudos

hi

good

go through this link ,this will give you clear idea about the ICONS.

http://www.sapdevelopment.co.uk/tips/icons_abap.htm

thanks

mrutyun^