cancel
Showing results for 
Search instead for 
Did you mean: 

file to application server

Former Member
0 Kudos

I want to transfer one local file in which I have downloaded my data to application server. How do we transfer local file to application server. Pls answer with code.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

There is no need of any coding here in your requirement.

you can go ahead with file to file scenario.

and for the file placed in application server you can access it using AL11 Tcode

Thanks,

Madhu

prateek
Active Contributor
0 Kudos

Are u using XI for this? If yes, then just configure a file to file scenario for this. And no code would be required.

Regards,

Prateek

Former Member
0 Kudos

Hi,

No i am not using XI, I want to do this with abap coding. pls let me know this.

prateek
Active Contributor
0 Kudos

Please make use of ABAP Forum for this issue. U could expect better responses there.

Regards,

Prateek

Former Member
0 Kudos

Hi,

you need to make use of the data sets here.

Open data set, read dataset, close dataset.

Or make use of the TCodes of CG3Z for upload and CG3Y for Downloading file from Application server.....

Thanks,

Madhu

Edited by: Madhu sudhan Reddy on Jul 18, 2008 9:21 AM

Former Member
0 Kudos

Hi Shweta,

You can use transaction CG3Z to upload file from desktop to application server and transaction CG3Y to download from Application server to your desktop. You can browse application server files using transaction AL11.

If you want to code, you can use function modules like ARCHIVFILE_SERVER_TO_CLIENT to download a file from application server and ARCHIVFILE_CLIENT_TO_SERVER to upload a file to application server.

Hope this helps.

Regards,

Riyaz

Former Member
0 Kudos

Hi riyaz, thanks. I was looking for the same.