‎2008 Jan 09 5:19 AM
Hi All,
How can i use the hotspot using Class CL_SALV_TABLE in alv and how can i trap the event click on hotspot in the output screen??..
Regards,
Sayak
‎2008 Jan 09 1:28 PM
hi sayak,
in the class definition
METHODS on_link_click
FOR EVENT link_click OF cl_salv_events_table
IMPORTING row column.
in class implementation give this
SET HANDLER me->on_link_click FOR o_events.
METHOD on_link_click.
DATA: l_row_string TYPE string,
l_col_string TYPE string,
l_row TYPE char128.
MESSAGE i000(0k) WITH 'You Clicked on Line'
row
'Of Column'
column.
ENDMETHOD. "on_single_click
if any doubts,tell me
regards,
sravanthi
‎2008 Jan 10 6:25 AM
Hi sravanthi,
Thank u for your reply..
But i want to know that how i can use the hotspot..??