2014 Mar 14 6:38 PM
Hello
I have the following line of code:
SELECT-OPTIONS: p_matnr FOR mara-matnr.
The users would like to use the multiple selection button to paste/upload from the clip board but unable until at least one entry is entered before the multiple selection will work. Is there a way for the multiple selection to work without entering a material?
THANKS
2014 Mar 14 7:20 PM
Remove the OBLIGATORY then check if "p_matnr" is initial (selection option are internal tables) when the user run the report.
2014 Mar 14 6:52 PM
In the above screen,bottom second right option is for load the data from clipboard so you can use this option..right
Thanks,
Sreeram
2014 Mar 14 7:00 PM
Hello Gary,
Is your Select option is OBLIGATORY ??
It happens only if the selection option is obligatory, remove the obligatory statement and try.
Regards,
Thanga
2014 Mar 14 7:13 PM
Thanks for quick response
I added obligatory see below:
SELECT-OPTIONS: p_matnr FOR mara-matnr obligatory.
but I can not get to the Multiple Selection screen unless I enter a value on 1st screen. I would like to go directly to the Multiple Selection Screen without entering a value
2014 Mar 14 7:20 PM
Hi Gary,
Just declare your variable like
data: gv_matnr type mara-matnr.
then declare select options
select-options s_matnr for gv_matnr.
with this you will not get any problem to go to extension to provide multiple range of values. If any thing you need revert back.
Regards,
Venkat.
2014 Mar 14 7:20 PM
Remove the OBLIGATORY then check if "p_matnr" is initial (selection option are internal tables) when the user run the report.
2014 Mar 14 8:39 PM
Hi Gary, Clicking the button shown below bring up the multiple selection screen without requiring a value. Do not add the obligatory keyword on the select-options statement as pointed out by Ramon.
see below: