‎2008 Oct 28 6:47 AM
Hi
If i give parameters i will be selecting 1 value
If i give select options i will be selecting range
But i need to select multiple values say 001 003 005 etc..is there a way out?
‎2008 Oct 28 6:51 AM
hi,
use select-options like this.
select-options s_datum for sy-datum no-intervals.
then you can assign initial values like this.
s_datum-sign = 'I'.
s_datum-option = 'EQ'.
s_datum-low = '01012008'.
append s_datum.
clear s_datum.
s_datum-sign = 'I'.
s_datum-option = 'EQ'.
s_datum-low = '01022008'.
append s_datum.
clear s_datum.
regards,
Peter
‎2008 Oct 28 6:49 AM
Hi,
Use different parameters options .,.,
Thanks,
ThiruKumaran. R
‎2008 Oct 28 6:51 AM
hi,
use select-options like this.
select-options s_datum for sy-datum no-intervals.
then you can assign initial values like this.
s_datum-sign = 'I'.
s_datum-option = 'EQ'.
s_datum-low = '01012008'.
append s_datum.
clear s_datum.
s_datum-sign = 'I'.
s_datum-option = 'EQ'.
s_datum-low = '01022008'.
append s_datum.
clear s_datum.
regards,
Peter
‎2008 Oct 28 7:32 AM
Hi,
Select options can also be used to enter individual values. by default, the select-option field will show a button at the right-most end (yellow colored arrow). by clicking on this, u can enter individual values.
If u want to remove the range option and provide only entering of individual values, u can use the addition "no-intervals' to ur select-options
regards,
Anoop
‎2008 Oct 28 7:55 AM