Hi,
I am facing the problem in non unicode system for below Code.
DATA : ITAB LIKE TBL64 OCCURS 0 WITH HEADER LINE.
LOOP AT ITAB.
CHECK ITAB+3(8) = SY-REPID.
--- ---
ENDLOOP.
it is showing ' ITAB+3(8) 'does not start with a charecter type field.
How to solve this problem
Thanks,
Koshal
ITAB is defined as raw data. So offsets will not work. Where are you trying this code and how is ITAB filled?
Add a comment