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

background processing

Former Member
0 Likes
762

Hi all,

in bakground processing and the data needs to be save, does the data always save to server if i choose for example

open dataset 'c:\sap2notes.txt' for output in text mode
             encoding default.

while i need to save the daa in client's pc.

many thanks.

aashta

1 ACCEPTED SOLUTION
Read only

vinod_vemuru2
Active Contributor
0 Likes
702

Hi,

If the presentation server you are going to use is one for very few in number then you can check below article which describes about making your PC as a RFC destination and communicate in background. In background you can't communicate with normal PCs.

http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/9831750a-0801-0010-1d9e-f8c64efb2bd2

Thanks,

Vinod.

5 REPLIES 5
Read only

Former Member
0 Likes
702

Hi,

Open Dataset will always save the contents to the Application server and not the local pc (presentation server).

Once you have saved to the Appl server, you would have to use some RFC. See more details in the IWki Blog mentioned at the following location:

http://wiki.sdn.sap.com/wiki/display/ABAP/Workingwithfiles#Workingwithfiles-Isitpossibletoworkinbackground%3F

Hope its helpful; to you.

Regards,

Mansi.

Read only

nirajgadre
Active Contributor
0 Likes
702

Hi,

The OPEN DATASET always saves the file on the application server. to save the data on the presentation server USE the remote function module.

Read only

vinod_vemuru2
Active Contributor
0 Likes
703

Hi,

If the presentation server you are going to use is one for very few in number then you can check below article which describes about making your PC as a RFC destination and communicate in background. In background you can't communicate with normal PCs.

http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/9831750a-0801-0010-1d9e-f8c64efb2bd2

Thanks,

Vinod.

Read only

0 Likes
702

thanks all.

for the mean time i used background processing.

I'll ask the basis to do the 'Communication to presentation server in bacjground mode' to save the data in presentation layer.

ti'll next time.

Read only

Former Member
0 Likes
702

Hi

Background Processing deals with Applictaion server only. It doesn't interact with presentation server.

what you can do is just create a folder on application server to get your files downloaded to app server from background and then write a separate program to download those files from application server to presentation server.

Regards

Geeta Gupta