‎2008 Sep 04 9:53 AM
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
‎2008 Sep 04 9:56 AM
Hi,
I hope the below link will help you.
http://help.sap.com/saphelp_nw04s/helpdata/en/e7/deb237b9a9a968e10000009b38f8cf/frameset.htm
Thanks,
Khushboo.
‎2008 Sep 04 9:56 AM
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.
‎2008 Sep 04 10:19 AM
Hello Vijay,
F4 help works fine for me, i am asking about the intervals button or more selections.
Regards,
Lisa
‎2008 Sep 04 10:03 AM
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
‎2010 Mar 08 4:39 PM
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.