Application Development 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: 

How to display ICONS in normal report without using icons table

Former Member
0 Kudos

Hi Friends,

I have to display icons(traffic lights) in a normal report.

Can we do that without using icons table?

If yes, please let me know how?

Thanks,

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

U have to know the sign of icon and use the option AS ICON:

WRITE '@08@' AS ICON.

Max

5 REPLIES 5

Former Member
0 Kudos

Hi

U have to know the sign of icon and use the option AS ICON:

WRITE '@08@' AS ICON.

Max

Former Member
0 Kudos

Please tell me how to display icons without doing hardcoding the icons from ICONS table.

0 Kudos

HI,

WRITE: / '@0A@' AS ICON, " RED LIGHT

'@08@' AS ICON, "GREEN LIGHT

'@09@' AS ICON. "YELLOW LIGHT

AND I DO NOT THINK THAT IS HARDCODEING.

Former Member
0 Kudos

Hi Pagidala,

Go to txcode - ABAPDOCU and in that expand BC-ABAP Programming->ABAP User Dialog->Screens->complex screen elements->status icons on Screens.

In this you can see sample code which may help you.

Cheers!!

Former Member
0 Kudos

thanks