‎2009 Apr 15 7:00 AM
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.
‎2009 Apr 15 7:04 AM
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
‎2009 Apr 15 7:04 AM
‎2009 Apr 15 7:06 AM
‎2009 Apr 15 7:15 AM
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!
‎2009 Apr 15 7:17 AM