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 loading

Former Member
0 Likes
427

Hello friends,

In real time regarding BDC ...How to upload the data is it thru DATASET (i.e., thru Application server)

or thru gui_upload(i.e., thru presentation Server)

No need to give code just gimme in real time what hey will do to upload.

With Regards,

Satya

2 REPLIES 2
Read only

Former Member
0 Likes
388

normally for the real time scenario data is uploaded via GUI_UPLOAD in case of BDC

for some specific scenario of automated BDC the data can be uploaded from application or FTP server...

Read only

Former Member
0 Likes
388

hi satya,

I n BDC we upload data only through GUI_upload when the data has to uploaded from presentation server.

We use dataset statement when we use data from application server.

So, the use of dataset statement comes when we want to run the BDC program in backgroung mode. in background mode the program cannot access the presentation server. So any upload Fm wont work.

So what we do is we load the data in to application server, and instead of using gui_upload to put data from file to internal table, we use dataset statement to read the file from application server and put data into internal table, rest of the functioning remains same.

Hope this helps, Do reward.