Application Development 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: 

Tab delimited data in internal table

far_sid2103
Explorer
0 Kudos
229

Hi

I uploaded the data from excel to internal table and converted it in a tab delimited format. Now I want to keep this tab delimited data in internal table only I don't want to download it.

Any suggestions on how can I do it.

Thanks

Farhan

1 REPLY 1

Sandra_Rossi
Active Contributor
171

Is it what you're asking for?

DATA(file_content) = VALUE string_table( ).
LOOP AT itab INTO DATA(line).
APPEND |{ line-field1 }\t{ line-field2 }\t{ line-field2 }| TO file_content.
ENDLOOP.