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

SBWP icon into custom program

jogeswararao_kavala
Active Contributor
0 Likes
479

Dear Experts,

I have been exploring to have SBWP icon on the application toolbar of my custom report program selection screen, but with little success.

Please guide.

kind regards

Jogeswara Rao

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
426

Hi,

     The report RSTXICON lists all the icons and their respective code values. Take the code value of an icon and use it in the text element to display the icon on the selection screen. make sure to include the icon code between two '@' symbols.

     Here is an example of writing the text element and using it in the selection screen.

     Text-000 : Here is an icon @0D@

     SELECTION-SCREEN BEGIN OF b1.

          SELECTION-SCREEN COMMENT 1(25) text-000.

     SELECTION-SCREEN END OF BLOCK b1.

Hope this helps,

~Athreya

1 REPLY 1
Read only

Former Member
0 Likes
427

Hi,

     The report RSTXICON lists all the icons and their respective code values. Take the code value of an icon and use it in the text element to display the icon on the selection screen. make sure to include the icon code between two '@' symbols.

     Here is an example of writing the text element and using it in the selection screen.

     Text-000 : Here is an icon @0D@

     SELECTION-SCREEN BEGIN OF b1.

          SELECTION-SCREEN COMMENT 1(25) text-000.

     SELECTION-SCREEN END OF BLOCK b1.

Hope this helps,

~Athreya