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: 

que21

Former Member
0 Kudos

hi,

In ABAP program, how do u access data that exists on a presentation server and data that exists on an application server?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

Using GUI_UPLOAD for accessig data from Presentation server

use OPEN DATASET for accessing data on Application server.

Thanks

Su

2 REPLIES 2

Former Member
0 Kudos

Hi

Using GUI_UPLOAD for accessig data from Presentation server

use OPEN DATASET for accessing data on Application server.

Thanks

Su

Former Member
0 Kudos

hi,

from presentaion server u can use

FM upload

FM ws_upload

FM gui_upload

from application server

open dataset dsn in text/binary mode for input/output/appending encoding default/utf-8.

transfer f to dsn. if output ie u want to writ to application server

read dataset dsn to f . if input i.e u want to read from application server

close dataset dsn

santhosh