I have task to refresh only modified rows in ALV grid. I know that the grid is refreshed via method
CALL METHOD l_grid->refresh_table_display
EXPORTING
is_stable = ls_stbl
EXCEPTIONS
finished = 1
OTHERS = 2.
But it refreshes the whole grid only.
Is there any method which allows to refresh certain grid lines?
Outside of the
DATA_CHANGED
event in edit mode, that is not supported.