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

que21

Former Member
0 Likes
389

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

Former Member
0 Likes
355

Hi

Using GUI_UPLOAD for accessig data from Presentation server

use OPEN DATASET for accessing data on Application server.

Thanks

Su

2 REPLIES 2
Read only

Former Member
0 Likes
356

Hi

Using GUI_UPLOAD for accessig data from Presentation server

use OPEN DATASET for accessing data on Application server.

Thanks

Su

Read only

Former Member
0 Likes
355

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