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: 

Exporting Local File in background

dru_marcellana
Participant
0 Kudos

Hi,

I want to export a flat file in background mode. I am currently using WS_DOWNLOAD but this doesn't work in background. What I think is that I will save it in UNIX directory. Can you please give some sample codes for this? or if there's still a way using WS_DOWNLOAD to do this in background?

I appreciate your response.

Thanks!

2 REPLIES 2

Former Member
0 Kudos

Use the transaction CG3Z to upload your file into application server.

Then you can use

open dataset.

transfer dataset.

close dataset.

commands to access that file from application server.

andreas_mann3
Active Contributor
0 Kudos

Hi,

use commands:

open dataset

transfer

close dataset

A.