‎2007 Oct 17 10:58 AM
Hi guys,
I need to set the select-options LOW only.
How can I set this? I cannot use SET PARAMETER it is not working.. please help me with this issue. thanks in advance
regards,
mike
‎2007 Oct 17 11:00 AM
‎2007 Oct 17 11:00 AM
‎2007 Oct 17 11:01 AM
Hello ,
In Select-Options if you want only low then use NO-INTERVALS addition.
With Regards,
Vidya
‎2007 Oct 17 11:02 AM
‎2007 Oct 17 11:04 AM
Selection table
A global internal table with a header line, the columns SIGN, OPTION, LOW and HIGH and the name of a selection criterion. It is used for the internal storage of selection conditions. Declared with the statement SELECT-OPTIONS; it can be evaluated in logical expressions using the language element IN.
‎2007 Oct 17 11:07 AM
hi,
add NO-INTERVALS addition toselect option then it allows select option to work as a parameter as
data: s_matnr like mara-matnr NO-INTERVALS.
if helpful reward some points.
with regards,
Suresh Aluri.
‎2007 Oct 17 11:53 AM
hi! Michael Nacionales
IF you want select-options LOW with Multiple selection use <b>NO INTERVALS</b>.
if select-options LOW Only with search help not with Range selections too. use
<b>NO INTERVALS NO-EXTENSION.</b>
selection-screen begin of block block1.
select-options: so_variable for table-item no intervals no-extension.
selection-screen end of block block1.
Regards,
Nagulan
Reward me if its Useful.