‎2009 Sep 17 7:29 PM
I created table control and filled values and now i want to track line items which I changed.
for that i use this logic
data: gd_repid like sy-repid,
ref_grid type ref to cl_gui_alv_grid.
if ref_grid is initial.
call function 'GET_GLOBALS_FROM_SLVC_FULLSCR'
importing
e_grid = ref_grid.
endif.
if not ref_grid is initial.
call method ref_grid->check_changed_data .
endif.
here ref_grid is nothing.
Thanks
‎2009 Sep 17 9:06 PM
store ur table control data in a temp structure and compare it with what it is in PAI.
‎2009 Sep 17 7:33 PM
hi Sonarali,
this FM is of no use to you.
in your PAI you have to loop at the table control table and put a method here you read the lines and save it.
if you use wizard to create a table control it will automatically give the code to you...
‎2009 Sep 17 9:06 PM
store ur table control data in a temp structure and compare it with what it is in PAI.
‎2009 Sep 18 1:59 PM