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

Multiple selections

Former Member
0 Likes
574

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?

1 ACCEPTED SOLUTION
Read only

peter_ruiz2
Active Contributor
0 Likes
547

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

4 REPLIES 4
Read only

Former Member
0 Likes
547

Hi,

Use different parameters options .,.,

Thanks,

ThiruKumaran. R

Read only

peter_ruiz2
Active Contributor
0 Likes
548

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

Read only

Former Member
0 Likes
547

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

Read only

Former Member
0 Likes
547

answered...