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

Tooltip in interactive reports

Former Member
0 Likes
725

Hi,

I had created simple report in which i have KUNNR,LAND1,LOEVM,NAME1,NAME2 columns.

whenever user move mouse on KUNNR field there should be tooltip like message 'Please select customer'.

so i need coding for how to create tooltip in reports.

Regards .

Mohsin S.

5 REPLIES 5
Read only

Former Member
0 Likes
685

HI


INCLUDE <ICON> . 
DATA: INFO(20) VALUE 'Information'. 
WRITE: / SY-UNAME QUICKINFO 'User name'. 
WRITE: / ICON_INFORMATION AS ICON QUICKINFO info 
                          HOTSPOT COLOR COL_POSITIVE. 

Edited by: SAP USER on Apr 15, 2009 8:06 AM

Read only

Former Member
0 Likes
685

This message was moderated.

Read only

Former Member
0 Likes
685

hi,

use

FM_FYC_TOOLTIP_CREATE

thanks

Read only

Former Member
0 Likes
685

Hi Mohsin,

while filling the fileld catalog

do below

data : wa_filedcat type LVC_S_FCAT,
         it_filedcat type lvc_t_fcat.

wa_filedcat-TOOLTIP = 'Customer'..
"And alos fill for your requierd fileds
append wa_filedcat to itt_filedcat .

CALL FUNTION reuse_alv_grid_display.

hope it helps you.

Thanks!

Read only

Former Member
0 Likes
685

Hi,

Check this FM 'FM_FYC_TOOLTIP_CREATE'

Regards,

Jyothi CH.