2006 Nov 01 2:30 PM
i wont 2 do a loop with or but it dont working
ex.
LOOP AT itab INTO wa_itab.
<b>IF wa_itab-action = 'y1' OR 'y2' OR 'y3'.</b>
ENDIF.
ENDLOOP.
bold line is not compile.
what i have to change?
thankes
2006 Nov 01 2:33 PM
i wont 2 do a loop with or but it dont working
ex.
LOOP AT itab INTO wa_itab.
<b>IF wa_itab-action = 'y1' OR 'y2' OR 'y3'.</b>
ENDIF.
ENDLOOP.
bold line is not compile.
what i have to change?
thankes
2006 Nov 01 2:33 PM
2006 Nov 01 2:40 PM
2006 Nov 01 2:48 PM
... or alternative
LOOP AT itab INTO wa_itab
where action(1) = 'Y' and action+1(1) between 1 and 3.
...
Regards,
Clemens
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |