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

Exporting Local File in background

Former Member
0 Likes
474

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!

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
Read only

Former Member
0 Likes
425

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.

Read only

andreas_mann3
Active Contributor
0 Likes
425

Hi,

use commands:

open dataset

transfer

close dataset

A.