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

INTERACTIVE ALV USING CLASS...

RoySayak
Active Participant
0 Likes
418

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

2 REPLIES 2
Read only

Former Member
0 Likes
391

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

Read only

0 Likes
391

Hi sravanthi,

Thank u for your reply..

But i want to know that how i can use the hotspot..??