‎2007 Sep 19 5:33 PM
Hi all,
I want chekc the field conatins the data 'Z','L','D'. and other field contains the 'X'.
but it giving error. 'Comma without preceding colon'.
I am writing like this.
if it_stb-postp in ( 'Z','L','D' ) and it_stb-xisdt = 'X'.
" Any BOM with Z, L, D
lw_stufe = it_stb-stufe.
continue.
endif.
regards,
Ajay Ram
‎2007 Sep 19 5:41 PM
IF ( it_stb-postp CA 'Z' or it_stb-postp CA 'L' or it_stb-postp CA 'D' ) and it_stb-xisdt = 'X'.
ENDIF.
‎2007 Sep 19 5:41 PM
IF ( it_stb-postp CA 'Z' or it_stb-postp CA 'L' or it_stb-postp CA 'D' ) and it_stb-xisdt = 'X'.
ENDIF.