2018 Dec 19 6:17 AM
I want to pass multiple select single values in select-options fields by default. Is there any way to do that?
I do not mean ranges from low to high. it will be all single values. The default values (sales org), ex. DE01, UK05, FR03, FR10. I need to display these values by default in select options.
2018 Dec 19 9:17 AM
Please also see below sample code.
SO_FIELD "select option
so_field-sign = 'I'.
so_field-option = 'EQ'.
so_field-low = 'DE01'. append so_field.
so_field-low = 'UK05'. append so_field.
so_field-low = 'FR03'. append so_field.
so_field-low = 'FR10'. append so_field.
I want to pass multiple select single values in select-options fields by default. Is there any way to do that?
I do not mean ranges from low to high. it will be all single values. The default values (sales org), ex. DE01, UK05, FR03, FR10. I need to display these values by default in select options.
2018 Dec 19 6:35 AM
Hi dsudeepdsudeep
Select option is basically internal table with SIGN, OPTION, LOW, HIGH field. you should insert values like below for individual items.

Best Regards
Andre Julius
2018 Dec 19 7:10 AM
Thank You Andre Julius. The Explanation helped. 🙂
2018 Dec 19 9:17 AM
Please also see below sample code.
SO_FIELD "select option
so_field-sign = 'I'.
so_field-option = 'EQ'.
so_field-low = 'DE01'. append so_field.
so_field-low = 'UK05'. append so_field.
so_field-low = 'FR03'. append so_field.
so_field-low = 'FR10'. append so_field.
2018 Dec 19 10:23 AM
so_field = value #( ( sign = 'I' option = 'EQ' low = 'DE01' )
( sign = 'I' option = 'EQ' low = 'UK05' ) ).
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |