Skip to Content
0
Former Member
Jan 12, 2011 at 04:03 PM

Bind subscreen in CL_GUI_CONTAINER object

257 Views

Hi colleagues,

I have following code which works fine - divide screen with splitter into two section.

  • create main container

create object go_cont

exporting

extension = 500

side = go_cont->dock_at_top

name = 'CONTAINER'.

  • create splitter

create object go_splitter

exporting

parent = go_cont

rows = 2

columns = 1.

  • create pane - overview

go_splitter->get_container(

exporting

row = 1

column = 1

receiving

container = go_cont1 ).

  • create pane - details

go_splitter->get_container(

exporting

row = 2

column = 1

receiving

container = go_cont2 ).

Then I have subscreen 0210 designed in Screen painter.

How can I bind this subscreen to container go_cont2?

Thanks a lot for help.

Best Regards

Martin