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

Icon for Push Button - Selection Screen

Former Member
0 Likes
9,415

Hi All,

I have Push Button in the selection screen. I want to give some icon in the push button instead of text.

Please help me how to do that.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
3,092

Sure..... in the AT SELECTION-SCREEN OUTPUT event, you can simply write the icon to the field. See here.



REPORT zrich_001.

type-pools: icon.

selection-screen PUSHBUTTON 2(20) but1 USER-COMMAND cli1.

at selection-screen output.
  concatenate icon_green_light 'Hey, Push This!'
               into but1 separated by space.

Regards,

Rich Heilman

2 REPLIES 2
Read only

RichHeilman
Developer Advocate
Developer Advocate
3,093

Sure..... in the AT SELECTION-SCREEN OUTPUT event, you can simply write the icon to the field. See here.



REPORT zrich_001.

type-pools: icon.

selection-screen PUSHBUTTON 2(20) but1 USER-COMMAND cli1.

at selection-screen output.
  concatenate icon_green_light 'Hey, Push This!'
               into but1 separated by space.

Regards,

Rich Heilman

Read only

0 Likes
3,092

Thanks, I rewarded you