‎2008 Oct 28 7:57 AM
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?
‎2008 Oct 28 7:59 AM
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
‎2008 Oct 28 8:27 AM
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
‎2008 Oct 29 10:48 AM
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
‎2008 Oct 29 10:58 AM
Hi,
no-extension won't show you he arrow.
tables : vbak
select-options : s_vbeln for vbak-vbeln NO-EXTENSION .
thanks & regards
Nishad.
‎2008 Nov 26 11:40 AM