Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Select Options in custom controller

Former Member
0 Likes
580

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

1 REPLY 1
Read only

former_member209703
Active Contributor
0 Likes
325

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