Hi swapnil,
using spilting the container you can do it
please see the piece of code rewards points if its helpful..
CREATE OBJECT o_split
EXPORTING
parent = o_docking
sash_position = 80
with_border = 1.
- Placing the containers in the splitter
o_top_container = o_split->top_left_container . o_bottom_container = o_split->bottom_right_container .
- Creating Grid
CREATE OBJECT o_grid1
EXPORTING i_parent = o_top_container."o_bottom_container.
- Creating Grid
CREATE OBJECT o_grid2
EXPORTING
i_parent = o_bottom_container."o_bottom_container.
CALL METHOD o_grid1->set_table_for_first_display.
CALL METHOD o_grid2->set_table_for_first_display.
Thanks
Srithar Thilliarajan