Hi all
My code for modifying the rows in my internal table is not working.
**MODIFY STATEMENT
*wa_scarr-carrid = 'RG1'.
*wa_scarr-carrname = 'RG Airlines1'.
*loop at it_scarr into wa_scarr.
*wa_scarr-currcode = 'USD'.
*modify it_scarr index 3 from wa_scarr transporting currcode.
*endloop.
*loop at it_scarr into wa_scarr.
write: / wa_scarr-carrid,
wa_scarr-carrname,
wa_scarr-currcode.
*endloop.
Please help.
Thanks in advance.