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 in interactive reports

Former Member
0 Likes
970

Dear gurus,

I want to display the field seperatly for the first screen in the interactive report.

can u suggest any idea.

Regards

R.Rajendran

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
922

Hi,

Define a field to hold the icon type. You can refer to ICON table for the available icons.

You can assign the hotspot to this icon field.

Regards,

Subramanian

7 REPLIES 7
Read only

Former Member
0 Likes
923

Hi,

Define a field to hold the icon type. You can refer to ICON table for the available icons.

You can assign the hotspot to this icon field.

Regards,

Subramanian

Read only

0 Likes
922

How do i declare the icon?

what is the syntax to execute the icon in specified field.

Thanks in advance

R.Rajendran

Read only

0 Likes
922

Create a variable of type c and length 132.

Assign the ICON name to that variable.

For example,

DATA: w_icon(132) type c value 'ICON_CHECKED'.

and when generating the output use the following syntax to display it as ICON.

Write: w_icon AS ICON.

Regards,

Lakshmi.

Read only

0 Likes
922

I have tried but some other icon is displaying. The icon what i have given is not displaying.

Regards

Read only

0 Likes
922

Check in ICON table for the icon that you want. Replace that icon name in declaration (instead of ICON_CHECKED).

Regards,

Lakshmi.

Read only

0 Likes
922

Dear Lakshmi,

I have used the following syntax in my program. Please check and let me know if any correction.

data : w_icon(18) type c value 'ICON_CREATE'.

WRITE : /5 '|' no-gap,(12) 'Auto Total ','|',(11) mt_tvalAOE right-justified color 5 hotspot , w_icon as icon ,'|' no-gap

Regards

R.Rajendran

Read only

0 Likes
922

can you provide any solution.

Regards

R.Rajendran