‎2005 Oct 24 2:40 PM
Hi all,
Does anybody know how to call a subscreen in a customer container?
Michael.
‎2005 Oct 24 2:47 PM
Hi Michael,
Can you tell us what kind of sub screen do you want to display in the custom container? viz. ALV/ HTML page/ NOrmal list??
Thanks,
Ravi
‎2005 Oct 24 2:55 PM
‎2005 Oct 24 3:13 PM
No dynpro's,... that's what I thought.
Thx for the quick response,
Michael.
‎2005 Oct 24 3:28 PM
‎2011 Aug 24 1:23 PM
I would really love to have a screen like a debugger in my custom development.
How do I do that? Do they not use containers in that?
‎2005 Oct 24 3:04 PM
Hi Michael,
For example if you are to display a ALV GRID,
then use the following code
data: container_r type ref to cl_gui_custom_container,
grid_r type ref to cl_gui_alv_grid.
create object container_r
exporting container_name = 'CONTAINER_1'.
create object grid_r
exporting i_parent = container_r.
call method grid_r->set_table_for_first_display
exporting
i_structure_name = <Structure of the internal tab>
changing
it_outtab = <Table with data>.
Thanks,
Ravi