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

Refresh an ALV grid

Former Member
0 Likes
513

Hi all.

When I'm using set_table_for_first_display method how can implement refreshing option after the user had pressed a button and activated a process ?

Thanks all,

Rebeka

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
479

hi,

use this code..

DATA: g_alv_grid TYPE REF TO cl_gui_alv_grid, " ALV Declaration

CALL METHOD g_alv_grid->refresh_table_display.

1 REPLY 1
Read only

Former Member
0 Likes
480

hi,

use this code..

DATA: g_alv_grid TYPE REF TO cl_gui_alv_grid, " ALV Declaration

CALL METHOD g_alv_grid->refresh_table_display.