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 latest value of ALV Grid on subscreen

Former Member
0 Kudos

There are two subscreens on my main screen. And there is an ALV Grid on every subscreen. After I changed some cells of these two ALV Grids, when I pressed a button on toolbar of main screen, the table values of the ALV Grids were still the values before I changed. What should I do to get latest value of ALV Grid on subscreen. If source code is provided, I will be very thankful.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Wayni

You need to call method of grid:

alv_grid_obj->refresh_table_display

after changes

Regards Shai.

2 REPLIES 2

Former Member
0 Kudos

Hi Wayni

You need to call method of grid:

alv_grid_obj->refresh_table_display

after changes

Regards Shai.

0 Kudos

Shai, thanks for your answer. My problem has been solved. Method "check_changed_data" is necessary.