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: 

Doubt about GUI_DOWNLOAD function module

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

0 Kudos

Hi Chen,

Thanks for Your answer.

It solved my Problem.