2006 Feb 26 1:02 PM
HI
i have one slect option
s_bukrs for coas-bukrs.
and
loop..
if w_bukrs eq s_bukrs"here is the problem,w_bukrs is
"holding single value and s_bukrs a range,so in such
"case how i can do comaprison
..
endif.
endloop
2006 Feb 26 1:04 PM
hi now ur using
EQ. instead of that u have to use 'IN'. It will work.
2006 Feb 26 1:03 PM
2006 Feb 26 1:04 PM
hi now ur using
EQ. instead of that u have to use 'IN'. It will work.
2006 Feb 26 1:17 PM
Hi Sanju,
Just use IN as said..
if w_bukrs <b>IN</b> s_bukrs
in case you want to compare a single value use..
if w_bukrs <b>EQ</b> s_bukrs-low or
if w_bukrs <b>EQ</b> s_bukrs-high
regards
satesh