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

select-options

Former Member
0 Likes
594

In select options by default we get an yellow coloured arrow mark on the right hand side to select multiple values... is there any way to eliminate this?

5 REPLIES 5
Read only

peter_ruiz2
Active Contributor
0 Likes
560

hi,

use NO EXTENSIONS

declare your select-options like this.

SELECT-OPTIONS: s_datum FOR sy-datum NO-INTERVALS NO EXTENSIONS.

regards,

Peter

Edited by: Peter Ruiz on Oct 28, 2008 4:13 PM

Read only

Former Member
0 Likes
560

Hi Arvind,

If you want the range of values for an input field in the select-options, you have no choice but to work with the arrow, as this arrow results the complex selection criteria of the select-option.

You can use No Extension addition to eleminate it , but then the range selection will not be possible , you can enter only one row.

for detail check

http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dba76035c111d1829f0000e829fbfe/content.htm

Regards,

Anirban

Read only

Former Member
0 Likes
560

Hi,

if you want to eliminate the from to option then you have to add "no intervals" & if you want to eliminate the yellow button then you have to add "no-extension"...


DATA spfli_wa TYPE spfli. 

SELECT-OPTIONS s_carrid FOR spfli_wa-carrid NO-EXTENSION 
                                            NO INTERVALS. 

Arunima

Read only

Former Member
0 Likes
560

Hi,

no-extension won't show you he arrow.

tables : vbak

select-options : s_vbeln for vbak-vbeln NO-EXTENSION .

thanks & regards

Nishad.

Read only

Former Member
0 Likes
560

answered