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: 

DOWNLOAD FILE WITH FIELD SEPARATOR

Former Member
0 Kudos

Hi all,

I need to locally download a file with field separator ' ; '.

Is there a function for this problem?

Tank's all.

1 ACCEPTED SOLUTION

kesavadas_thekkillath
Active Contributor
0 Kudos

Hi,

Concatenate ';' with each fields of the internal table

loop at itab into wa.

concatenate wa-field1 ';' wa-field2 into wa_line.

append wa_line to it_line.

clear wa_line.

endloop.

download it_line using the function module

2 REPLIES 2

Former Member
0 Kudos

What's the matter with GUI_DOWNLOAD?

Have you searched through the forum?

Rob

kesavadas_thekkillath
Active Contributor
0 Kudos

Hi,

Concatenate ';' with each fields of the internal table

loop at itab into wa.

concatenate wa-field1 ';' wa-field2 into wa_line.

append wa_line to it_line.

clear wa_line.

endloop.

download it_line using the function module