2008 Feb 11 8:15 AM
2008 Feb 11 8:29 AM
just use Icon_Okey, on the screen painter attributes which will display you when you double click on the button in a screen painter.
Reward points it it helps.
2008 Feb 11 8:18 AM
By mentioning button, i guess you are referring to Pushbutton.
Is it in a report program or Module pool Program?
~Eswar
2008 Feb 11 8:20 AM
Hi,
goto ur se41
when ur creating the button then give the icon name as ICON_OKAY then u will get the green tick in on ur button.
if u want the green tick on the customized screen then create the button and double click on the button and give ICON_OKAY in the icon name.
Plzz reward points if it helps.
2008 Feb 11 8:21 AM
Hi,
use icon_okay for your push button in module pool
the optiion lies in screen painter attributes.
cheers
2008 Feb 11 8:29 AM
just use Icon_Okey, on the screen painter attributes which will display you when you double click on the button in a screen painter.
Reward points it it helps.
2008 Feb 11 8:32 AM
As all of the suggestions above are screen related and just incase you need it for report program:
SELECTION-SCREEN PUSHBUTTON 12(10) butt USER-COMMAND cmd.
DATA: g_text(10) TYPE c.
INITIALIZATION.
CONCATENATE text-011 'Okay' INTO g_text.
" Value for Text-011 is @01@
MOVE g_text TO butt.
Regards
Eswar