Application Development 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: 

Select-options

Former Member
0 Kudos

Hi,

I want to know what is the use of no intervals no-extensions in select-options. Plz help me out regarding this !.

Regards,

Aastha

1 ACCEPTED SOLUTION

Former Member
0 Kudos

If you want to that select -option behaves like a Parameter ...

then we use no-interval & no extensions

no-extensions - the pushbutton for multiple selection is not created on the selection screen.

no-intervals - the second input screen is not created on the selection screen.

3 REPLIES 3

Former Member
0 Kudos

Hi,

In select-options ,

no intervals is used ,if you do not want ranges ,in this only one input field will be displayed(not ranges)

no extension is used when you do not want multiple selections,

( that side arrow will not come),

Reward if useful

Regards,

Talwinder

Former Member
0 Kudos

If you want to that select -option behaves like a Parameter ...

then we use no-interval & no extensions

no-extensions - the pushbutton for multiple selection is not created on the selection screen.

no-intervals - the second input screen is not created on the selection screen.

venkat_o
Active Contributor
0 Kudos

Hi Aastha Gupta, Just execute and check the following code and read comments below for every statement.

REPORT zvenkat_test1.
TABLES pa0001.
SELECT-OPTIONS: p_pernr1 FOR pa0001-pernr.
"Without any addition to Select-option statement.
SELECT-OPTIONS: p_pernr2 FOR pa0001-pernr NO-EXTENSION.
"If you specify this addition, the pushbutton for multiple selection is not created on the selection screen.
SELECT-OPTIONS: p_pernr3 FOR pa0001-pernr NO INTERVALS.
"If you specify this addition, the second input screen is not created on the selection screen.
"The user can only specify a single comparison in the first line in the selection table on the
"selection screen. The dialog box for multiple selections still allows interval selections.
SELECT-OPTIONS: p_pernr4 FOR pa0001-pernr NO-EXTENSION NO INTERVALS.
"Declaration of a selection criterion for which a single comparison is possible on the selection screen,
"but multiple selection isnot possible.
I hope that it can help you. Regards, Venkat.O