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 problem

Former Member
0 Likes
495

I have created a alv report with CL_GUI_ALV_GRID now i have to make it interactive depending onthe field selection

I have used GET_SELECTED_ROWS method oof the class CL_GUI_ALV_GRID

here i can get complete row for which i have clicked

can any body help me how can i get clicked filed name and value in alv with CL_GUI_ALV_GRID

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
474

If you have event handler for DOUBLE_CLICK or HOTSPOT_CLICK then You can get clicked filed name and value in side the Event handler method.

Parameters

E_ROW

E_COLUMN <---You can get the column field information

ES_ROW_NO

3 REPLIES 3
Read only

former_member745780
Active Participant
0 Likes
474

Hello

you can real the internal table with the index which you have selected from method

GET_SELECTED_ROWS

Thanks

Read only

Former Member
0 Likes
475

If you have event handler for DOUBLE_CLICK or HOTSPOT_CLICK then You can get clicked filed name and value in side the Event handler method.

Parameters

E_ROW

E_COLUMN <---You can get the column field information

ES_ROW_NO

Read only

0 Likes
474

Thanks, i got the result