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

Selection screen as Subscreen help required

Former Member
0 Likes
933

Hello All,

I am facing a problem by calling selection screen as subscreen, Here is my problem

In my main screen i have create a sub screen as search help

so in my sub-screen i have select-options

If i click the button to include and exclude some values i don't see the dailog box for selections is not appearing.

Please provide help. I need to allow the user to enter some n values?

Regards,

Lisa

5 REPLIES 5
Read only

Former Member
0 Likes
727
Read only

Former Member
0 Likes
727

what are the Fields you are using in the Selection screen. are those fields have F4 help by default(check table, value table or Domain Fixed value) . if the field is not having any then you have to manually provide the F4 help using F4IF function.

Read only

0 Likes
727

Hello Vijay,

F4 help works fine for me, i am asking about the intervals button or more selections.

Regards,

Lisa

Read only

raja_narayanan2
Active Participant
0 Likes
727

Hi....

for select options.......

If your search filed is not coming in F4 help then assign match code for that filed so that you will get F4 help....

or if your selection screen is not coming then call the screen with options starting at and ending at with poisitions....

so it will display in a dialog box.

Regards

Raja

Read only

Former Member
0 Likes
727

Hi,

There is a small mistake that you are doing..

In the subscreen donot create the select options... What you need to do is... in the TOP Include write lines like..

SELECTION-SCREEN BEGIN OF SCREEN 1010 AS SUBSCREEN.

SELECT-OPTIONS s_proj FOR zimple_crmt_1000-title_part.

SELECT-OPTIONS s_cr FOR crmd_orderadm_h-object_id.

SELECTION-SCREEN END OF SCREEN 1010 .

Then.. in the screen where you have subscreen to be included write

          • PBO

CALL SUBSCREEN subs_1010 INCLUDING sy-repid '1010'.

          • PAI

CALL SUBSCREEN subs_1010.

By doing this... the select option will appear on your subscreen with the extension and interval options.

All the best.