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

to catch modified value from table control(Dialog Program)

Former Member
0 Likes
521

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
481

store ur table control data in a temp structure and compare it with what it is in PAI.

3 REPLIES 3
Read only

Former Member
0 Likes
481

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...

Read only

Former Member
0 Likes
482

store ur table control data in a temp structure and compare it with what it is in PAI.

Read only

Former Member