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: 

refresh_table_display problem in ECC6

former_member637921
Participant
0 Kudos

Hello all,

We have a report that shows ALV list using FM 'REUSE_ALV_GRID_DISPLAY'. the user can select a line and post memo, and then another program is submitted and shows an ALV log list.

When clilcking the F3 button to go back to the first ALV a dump is created in method refresh_table_display message x007(dc)- a refresh id needed to show the updated data.

It was working just fine in 46C.

Any ideas how to slove it?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi..

First try this Code

then you can use Refresh Display Method instead of CHECK_CHANGED_DATA.

DATA : REF1 TYPE REF TO CL_GUI_ALV_GRID.

CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'

IMPORTING

E_GRID = REF1.

CALL METHOD REF1->CHECK_CHANGED_DATA.

Salil....

1 REPLY 1

Former Member
0 Kudos

Hi..

First try this Code

then you can use Refresh Display Method instead of CHECK_CHANGED_DATA.

DATA : REF1 TYPE REF TO CL_GUI_ALV_GRID.

CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'

IMPORTING

E_GRID = REF1.

CALL METHOD REF1->CHECK_CHANGED_DATA.

Salil....