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: 

BDC SYNCHONOUS AND ASYNCHRONOUS

Former Member
0 Kudos

Can any one tell difference between

sychronous and asynchonous in BDC.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

friend before posting the question y cant u search in the forum,

there are many threads (answers to ur question).

sorry if u feel bad its just advise.

6 REPLIES 6

Former Member
0 Kudos

friend before posting the question y cant u search in the forum,

there are many threads (answers to ur question).

sorry if u feel bad its just advise.

Former Member

Former Member
0 Kudos

Hi,

Go through the following link.

https://www.sdn.sap.com/irj/sdn/profile?editmode=true&userid=3775815

thanks and regards

Former Member
0 Kudos

hi venkatesh,

Just go through the below given link,

[http://www.allinterview.com/showanswers/2678.html]

Hope its clear to you,

Inspire if u sefull,

Regards,

Kalyan.

former_member435013
Active Participant
0 Kudos

Hi,

Asynchronous means transaction ends with "COMMIT WORK.".

Synchronous means transaction ends with "COMMIT WORK AND WAIT."

Regards

Walter Habich

Former Member
0 Kudos

Hi,

Synchronous update in which if you change data of one table then all the related Tables gets updated. And sy-subrc is returned i.e., sy-subrc is returned for once and all.

Asynchronous update. When you change data of one table, the sy-subrc is returned. And then updating of other affected tables takes place. So if system fails to update other tables, still sy-subrc returned is 0 (i.e., when first table gets updated).

Regards,

Bhaskar