2007 Jul 30 6:21 AM
hi friends,
i have a select option called condition type(so_kschl) declared with no intervals. but not with no-extension so user can enter more than one condition type at a time .
the select statement i have written is
select (some fields) from a004 where kschl in so_kschl.
is this select statement for one value ? or can we use this for multiple selection also ,since there are more than one value in select option do we need to use loop .
any sample code will be of great use ..
thank you
with regards,
gokul.
2007 Jul 30 6:24 AM
Hi
Your code is correct.
Regards
Raj
2007 Jul 30 6:24 AM
2007 Jul 30 6:27 AM
Hi Gokul,
Your statement is correct which can take multiple values for select-options. If will takes single value when specifies both NO-INTERVALS and NO-EXTENSION.
Give some values to the SO_KSCHL in the INITIALIZATION event
<b>INTIALIZATION.</b>
SO_KSCHL-LOW = 'VALUE1'.
APPEND SO_KSCHL.
SO_KSCHL-LOW = 'VALUE2'.
APPEND SO_KSCHL.
SO_KSCHL-LOW = 'VALUE3'.
APPEND SO_KSCHL.
SO_KSCHL-LOW = 'VALUE4'.
APPEND SO_KSCHL.
select (some fields) from a004 where kschl in so_kschl.
Thanks,
Vinay
2007 Jul 30 6:27 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |