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

Tab delimited data in internal table

far_sid210333
Explorer
0 Likes
746

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

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
Read only

Sandra_Rossi
Active Contributor
688

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.