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: 

save file on development application server from quality using open dataset

Former Member
0 Kudos
123

hi friends,

i m using the 'OPEN DATASET' command to write the file on application server. i tested the program it is running fine on

development server.

now when i m running on quality system i need to save the file on same path which i was using on development server i.e. i have to use the development application server path to save the file. but when i m doing this i m not able to save the file. i have define the path like this it is development apllication server IP : '
87.65.298.645\master\master_input.txt'

pls can u explain me why i m not able to save the file from quality server to development application server? is it possible to do this? the way i have define the path is right?

Thanks and Regads,

Vicky.

7 REPLIES 7

Former Member
0 Kudos
86

Hi,

I don't think you will be able to place the file on application server of develoment system from your quality system using OPEN_DATASET.

Suresh

0 Kudos
86

thanks suresh for ur reply.

can u tell me any other way to do this.

i have checked the GUI_DOWNLOAD fm also using that i can do this, but i need to run this program only in background. and GUI_DOWNLOAD won't suppot for background run.

Thanks and regards,

vicky

0 Kudos
86

Hi,

the best way would be write the data onto Quality application server adn then with in the same program by using FTP_CONNECT FMs place it to the application server of Development system.

Suresh

Former Member
0 Kudos
86

Hi,

Check with basis team, they can able to put the file in the same path in quality server.

Regards,

Preetham

0 Kudos
86

dear Preetham,

i don't want to save the file on quality server bacause of some security issues. i want to save it only on development application server. so pls suggest how to do this from quality server. and how basis person can help me in this.

thanks and regards,

vicky

0 Kudos
86

Try to move file (created) in Quality to development using UNIX command in your program.

Unix command-Move it tp script

script = mv space "Quality path with filename" space "devleopment path with file name".

Then call unix command

BEGIN OF ITAB OCCURS 0,

LINE(200),

END OF ITAB.

CALL 'SYSTEM' ID 'COMMAND' FIELD script

ID 'TAB' FIELD ITAB-SYS*

Thanks!

0 Kudos
86

HI,

Please someone help me to solve this problem. Anyone have any idea about how to run the batch file on application server from user system using ABAP program?

Thanks,

vicky.

Edited by: vicky on Jul 19, 2010 8:07 PM