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: 

Editable ALV using FM REUSE_ALV_GRID_DISPLAY_LVC.

Former Member
0 Kudos

Hi Friends,

I have ALV with editable field and I am using FM REUSE_ALV_GRID_DISPLAY_LVC.

In this case I am unable to get data enter in editable column.

I have customize PF - STATUS for ALV.

Please guide me to resolve.

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi amit,

check this method...it records the changes done ....

CALL METHOD ref_grid->check_changed_data .

hope it helps..

regards,

somesh

Edited by: someshuttarwar on Nov 29, 2011 1:14 PM

2 REPLIES 2

Former Member
0 Kudos

hi amit,

check this method...it records the changes done ....

CALL METHOD ref_grid->check_changed_data .

hope it helps..

regards,

somesh

Edited by: someshuttarwar on Nov 29, 2011 1:14 PM

Former Member
0 Kudos

Hi,

You need to use this code,inorder to get the changed detils in the editable row.

CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'

IMPORTING

e_grid = go_popup_grid.

CALL METHOD go_popup_grid->check_changed_data.

Thanks,

Lavanya.