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

Setting Select-options at selection screen

Former Member
0 Likes
796

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

7 REPLIES 7
Read only

Former Member
0 Likes
771

select-options : s_a for var no intervals.

Read only

Former Member
0 Likes
771

Please reward points if helpful.

Read only

Former Member
0 Likes
771

Hello ,

In Select-Options if you want only low then use NO-INTERVALS addition.

With Regards,

Vidya

Read only

Vijay
Active Contributor
0 Likes
771

Hi

in initialization event set

s_option-sign = 'eq'

s_option-option= 'I'

s_option-low= 'value'

this will solve ur problem.

<b>reward points if helpfull.</b>

regards

vijay

Read only

Former Member
0 Likes
771

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.

Read only

Former Member
0 Likes
771

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.

Read only

Former Member
0 Likes
771

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.