‎2008 May 12 1:28 PM
Hello, i have two programs that work with one transparent table, one for editing and one for displaying. After editing i need to hit refresh button on the ALV for display, for the data to be refreshed. This is the code:
...
toolbar_handler FOR EVENT toolbar OF cl_gui_alv_grid
...
method toolbar_handler.
SELECT * FROM zianexe into TABLE itab.
endmethod.
...
The problem is that i have to press the button two times.
‎2008 May 12 1:59 PM
Hi
Use the grid method REFRESH_TABLE_DISPLAY
Example:
CALL METHOD go_grid->refresh_table_display.
Rewards points if useful.
Regards
Nikunj Shah
‎2008 May 13 7:43 AM
But the "go_grid->refresh_table_display" won`t work because i must refresh the internal table from the database first.
Anyone ?