Application Development 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: 

How to get current row from my ALV-Grid Table ``?

Former Member
0 Kudos

Hi All,

I tried to get the input of the current Row from my ALV-Table. I use the Event data_changed. The Problem is, in this Event i cant see the input of this current row.

How can I get the current row.

Can anyone telll me about it?

Thanks ,

Ersin

Edited by: ETN_58 on Jul 22, 2010 12:29 PM

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi ,

try to use this

READ TABLE er_data_changed->mt_mod_cells INTO ls_mod_cell_temp.

this wll read u r table n get u row data .

2 REPLIES 2

Former Member
0 Kudos

Hi ,

try to use this

READ TABLE er_data_changed->mt_mod_cells INTO ls_mod_cell_temp.

this wll read u r table n get u row data .

0 Kudos

Thank you very much,

it works and is a great solution.