Hi,
i have a code lik this
ztabletype is a table structure.
tables : ztable.
data: itab type ztabletype,
wa_itab like line of itab.
select * from ztable into itab where 'condition'.
LOOP AT itab INTO wa_itab.
....
...
ENDLOOP.
I am getting the error "ITAB can not be converted to WA_ITAB".
How to correct this problem?
Rgards,
Mythili