‎2008 May 16 6:24 AM
Hi
how we can replace the following statement in Unicode system
write:/ itab.
where itab is an internal table having 100 fields .
thanks in advance.
‎2008 May 16 6:33 AM
hi,
do this way ..
loop at itab.
write:/ itab-fld1,
itab-fld2
.........
itab-fld100.
endloop.
‎2008 May 16 6:33 AM
there should be no need to change as such....means it will not give you an error.(may be just an enhancement related warning.)
however, the best way will be to have a header line and then write that out with individual fields.
loop at itab into wa.
write 😕 wa-field1, wa-field2 ....and so on.
endloop.
Edited by: Priyank Jain on May 16, 2008 1:36 AM