Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

LOOP ON INTERNAL TABLE WHERE

Former Member
0 Kudos

Hi All,

I want to do something like this

loop at itab into w_itab where

field cp '*'.

endloop.

The problem is that 'field' is typed RAW. And it gives me an error like this "<%_L0BB>-APZNR" must be a character-type data obj...

Does any one have an idea on how to fix this ?

regards,

Stek'o'poivr

1 REPLY 1

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Try this.

Data: char_field(50) type c.

loop at itab into w_itab.

char_field = w_itab-field.

check char_field cp '*'.

  • Do something

endloop.

Regards,

Rich Heilman