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 to Application server

Former Member
0 Kudos

Hi there,

I am using Appl server to download data from internal table. The data is downloaded to Appl server, but the problem is

there is no field gap in Appl server data. How to maintain gap between fields in Appl server data.

Regards,

Naseer.

2 REPLIES 2

Former Member
0 Kudos

1. Write the field content into one long line which you are using for upload

e.g CONCATENATE p_direct p_obj sy-datum text-037 INTO wa_error SEPARATED BY space.

2. Transfer to Application server

TRANSFER wa_error TO p_f2.

Former Member
0 Kudos

Put some delimiter there and then try.

means you can add some blank spaces to internal table before taking it into application server.

as far as i know other option is not available.