‎2008 Jun 26 5:49 AM
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
‎2008 Jun 26 5:56 AM
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
‎2008 Jun 26 5:56 AM
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
‎2008 Jun 26 6:50 AM
How do i declare the icon?
what is the syntax to execute the icon in specified field.
Thanks in advance
R.Rajendran
‎2008 Jun 26 6:54 AM
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.
‎2008 Jun 26 7:21 AM
I have tried but some other icon is displaying. The icon what i have given is not displaying.
Regards
‎2008 Jun 26 7:38 AM
Check in ICON table for the icon that you want. Replace that icon name in declaration (instead of ICON_CHECKED).
Regards,
Lakshmi.
‎2008 Jun 26 7:49 AM
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
‎2008 Jun 26 9:17 AM