Application Development and Automation 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: 
Read only

Green TICK on button

Former Member
0 Likes
2,188

Hi all..

Hw can i have the green TICK in my button?

THKS

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,683

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.

5 REPLIES 5
Read only

Former Member
0 Likes
1,683

By mentioning button, i guess you are referring to Pushbutton.

Is it in a report program or Module pool Program?

~Eswar

Read only

Former Member
0 Likes
1,683

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.

Read only

Former Member
0 Likes
1,683

Hi,

use icon_okay for your push button in module pool

the optiion lies in screen painter attributes.

cheers

Read only

Former Member
0 Likes
1,684

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.

Read only

Former Member
0 Likes
1,683

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