r_kschl-sign = 'I'.
r_kschl-option = 'EQ'.
r_kschl-low = 'JEC1'.
APPEND r_kschl.
r_kschl-low = 'JEC2'.
APPEND r_kschl.
r_kschl-low = 'JM01'.
APPEND r_kschl.
r_kschl-low = 'JM02'.
APPEND r_kschl.
......
....
...........
IF NOT itab3[] IS INITIAL.
CLEAR: R_KSCHL,ITAB3.
SELECT belnr AS belnr1
mwskz
hwbas
hwste
kschl
kbetr
FROM bset INTO CORRESPONDING FIELDS OF TABLE itab4
FOR ALL ENTRIES IN itab3
WHERE belnr = itab3-belnr1
AND kschl IN r_kschl
AND kbetr NE 0.
ENDIF.
I need to fetch all the conditon types declared in the range but it is fetching me only one.How a range works?
Thanks,
K.Kiran.