I have a container in screen called 'CONTAINER'. I have two objects from the same class, this class consists instance variable for both container and grid.
object1->container type ref to cl_gui_custom_container,
object1->grid type ref to cl_gui_alv_grid. ; When I instantiate these objects, I will create both container objects and grid object for each instances. Based on a button click I will select these object from a table and call the display method.
Inside this display method I will call local grid->set_table_for_first_display. Since object1 and object 2 are completely different variable, I planned to use different objects for different data in ALV(using same container 'CONTAINER'), but table is not refreshing. It always show records loaded first time.
Any help would be highly appreciated!