‎2008 Jan 08 2:23 PM
how can we hide 'TO' value at select options in selection screen
‎2008 Jan 08 2:25 PM
NO INTERVALS after the declaration of the select-options.
SELECT-OPTIONS <seltab> FOR <f> ..... NO INTERVALS .....
Best regards
Danny
‎2008 Jan 08 2:26 PM
Hi ANjan
Syntax is Select-Option s_test type matnr NO INTERVALS .
It will solve your problem
Dont forgot to reward points
Hitesh
‎2008 Jan 08 2:28 PM
Hi,
Declare the select-options like this.
select-options: lifnr for lfa1-lifnr no intervals.
if you give like this you can hide the To values but multiple selection icon will be displayed.
If you want to hide the multiple selection icon as give like this.
SELECT-OPTIONS s_carrid FOR spfli_wa-carrid NO-EXTENSION NO INTERVALS.
Thanks & Regards
Haritha.
‎2008 Jan 08 2:29 PM
‎2008 Jan 08 2:29 PM
actual rtequirement is when we enter two values in select option i have to retrive detalils regarding those two values only not thae range between those two
‎2008 Jan 08 2:32 PM
Then you have to use the multiple selection button behind the select-option.
Is standard function in SAP. Just use no-intervals to eliminate the intervals/ranges...
Best regards,
Danny
‎2008 Jan 08 2:34 PM
Hi,
Write the select-option with only no intervals option, and you can give the values based on which the data should be displayed by clicking on multiple selection icon.
Thanks & Regards
Haritha.
‎2008 Jan 08 2:38 PM