Hi
In my data changed method I have to refresh my grid with this code:
CALL METHOD v_grid_9003->refresh_table_display
EXPORTING
is_stable = s_stable
EXCEPTIONS
finished = 1
OTHERS = 2.
However, if I've used the standard append or delete, then reach the data changed section, the old row reappear or disappear.
So
- User clicks append/ delete (works)
- User changes data and presses enter (works -- other fields are automatically populated)
- User clicks delete for a row (works), user updates material on another and presses enter (works) ... but then the old row appears
Is there anyway to refresh the table associated with the refresh_table_display?
Thank you
Stephanie