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

Former Member
0 Likes
451

Hi,

Can anyone tell me what is difference between synchronous update and asynchronous update in BDC?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
435

hi,

synchonous update: is used to no transaction is stored until

the previous transaction has been written into the sap databse.

asynchonous: is used to the program is need not wait for the

previous transaction . any kind of transaction is stored

into the database.

Hope this helps

4 REPLIES 4
Read only

Former Member
0 Likes
435

Hi,

synchronous update: record by record update

asynchronous update: at a shot(multiple records) update.

seshu.

Read only

Former Member
0 Likes
436

hi,

synchonous update: is used to no transaction is stored until

the previous transaction has been written into the sap databse.

asynchonous: is used to the program is need not wait for the

previous transaction . any kind of transaction is stored

into the database.

Hope this helps

Read only

Former Member
0 Likes
435

HI

synchronous update------for example if there is a record which we r updating in a table ..then the related tables all are updated until then the next step is not processed.

whereas in aynchronous a record is updated and simultaneously next step is processed.

Read only

Former Member
0 Likes
435

hi,

in synchronous update if there is any error record in the middle untill it is corrected it will be not updated in the data base table

but an asynchronous update irrespective of error record (the error record will be stoped and correct record will be updated) the records which are correct will be updated in the data base table