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

Doubt about GUI_DOWNLOAD function module

Former Member
0 Likes
461

Hi Experts,

I am using GUI_DOWNLOAD to download internal table data into text file. In the text file I need to display Pipe symbol as delimiter instead of tab space.

Is there any parameter in the functionmodule which works on this or any other alternative..?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
423

Hi Krishna,

The FM doesn't accomodate for any other delimeter other than tab space.

In this case you will have to create a table of type string, loop through your ITAB and concatenate each field separated by '|' and then download this table using "GUI_DOWNLOAD".

Regards,

Chen

2 REPLIES 2
Read only

Former Member
0 Likes
424

Hi Krishna,

The FM doesn't accomodate for any other delimeter other than tab space.

In this case you will have to create a table of type string, loop through your ITAB and concatenate each field separated by '|' and then download this table using "GUI_DOWNLOAD".

Regards,

Chen

Read only

0 Likes
423

Hi Chen,

Thanks for Your answer.

It solved my Problem.