Application Development and Automation 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: 
Read only

How to replace write:/ Itab statement in Unicode system?

Former Member
0 Likes
363

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.

2 REPLIES 2
Read only

Former Member
0 Likes
332

hi,

do this way ..


loop at itab.
write:/ itab-fld1,
          itab-fld2 
          .........
         itab-fld100. 
endloop.

Read only

Former Member
0 Likes
332

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