‎2008 Mar 26 9:05 PM
hi all,
I am getting plant data into my internal table. I am using case statements if plant (werks) = '0001' or '0002' i want to process, but now i want if suppose other than these two plants if any other plant ex: 0003 wil get i want to exit.
can any one help me in this
thanks
‎2008 Mar 26 9:33 PM
case <>
when 001.
.../
when 002.
...
when others.
message e0001..
endcase.
‎2008 Mar 26 9:17 PM
show your code, are you appending in the cases? you want to stop appending if the cases are other.
Case werks.
when '0001'.
when '002'.
when others.
endcase.
Maybe that will help you
‎2008 Mar 26 9:33 PM
case <>
when 001.
.../
when 002.
...
when others.
message e0001..
endcase.