‎2011 Aug 11 6:06 AM
Hi,
Any one please let me know how to put select options on custom container. I need to display select options based on the input a tree and a report should be displayed in the same screen along with input screen.
So I planned object oriented program to split screen to display tree and report. and again I split left side container to 2 containers. Now I want put the selection screen on left top container.
Please help.
Chandra
‎2011 Aug 11 12:23 PM
What you can do is the following:
Define a Container Object on one side of the screen to place the ALV Tree, and a Subscreen area on the other side, so you can place your select-options right there:
You can define the select-options this way:
SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
SELECT-OPTIONS : s_ebeln FOR ekko-ebeln ,
s_ebelp FOR ekpo-ebelp .
SELECTION-SCREEN END OF SCREEN 100 .
And then in the flow logic of your dynpro, assign this selection screen to your subscreen area. (Called SUB1 in this case)
call subscreen sub1 including sy-repid '0100'.
Regards