‎2007 Mar 15 12:39 AM
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.
‎2007 Mar 15 12:44 AM
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
‎2007 Mar 15 12:44 AM
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
‎2007 Mar 15 1:03 AM