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

BDC in Background

Former Member
0 Likes
868

Hello Friends,

I have developed program using OPEN,CLOSE,READ DATASET which takes file from application server and transfer data to internal table running successfully in foreground and background .......

But when i m trying to access file which is on my PC desktop....i m getting error file can not be open............

So,Please let me know how to access file from desktop and run it in background ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
830

One can access data in background mode when data is present in Application server...

One can access data in foreground mode when data is present in Application server and Presentation server...

Accordingly upload the data from either of the servers..

Hello Friends,

I have developed program using OPEN,CLOSE,READ DATASET which takes file from application server and transfer data to internal table running successfully in foreground and background .......

But when i m trying to access file which is on my PC desktop....i m getting error file can not be open............

So,Please let me know how to access file from desktop and run it in background ?

7 REPLIES 7
Read only

Former Member
0 Likes
830

Hi

"access file from desktop and run it in background "

is not possible, you have to use DATASET's only

Regards

MD

Read only

0 Likes
830

This message was moderated.

Read only

0 Likes
830

Jorge Hernandez Olalla wrote

you need to do your R&D here>>

Read only

Former Member
0 Likes
830

The case in which file on frontend PC in that case OPEN,CLOSE,READ DATASET would not worked.

Use Gui_upload in that case"it will not work in background

Read only

Former Member
0 Likes
830

hi...

read dataset,open dataset can be used to access file on the application server.

in order to access file which is on your desktop you have to use simple function modules like gui_upload or ws_upload and not read dataset and open dataset.

because in using read dataset and open dataset you mention the path of some other application server.

Read only

Former Member
0 Likes
830

Hi,

Use GUI_UPLOAD FM to run the bdc from presentation server file.

By sai...

Read only

Former Member
0 Likes
831

One can access data in background mode when data is present in Application server...

One can access data in foreground mode when data is present in Application server and Presentation server...

Accordingly upload the data from either of the servers..