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

Difference between Synchronous and Asynchronous processing?

Former Member
0 Likes
3,108

Hi Experts,

Can any one tell me the difference between Synchronous and Asynchronous processing?

Thanks&Regards,

Naren.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,013

In batch session interface: - Asynchronous processing means Transfers data for multiple transactions - Synchronous database update means during processing, no transaction is started until the previous transaction has been written to the database.

In CALL TRANSACTION: - Synchronous processing means Transfers data for a single transaction. Synchronous and asynchronous database updating both possible The program specifies which kind of updating is desired. Separate LUW for the transaction The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.

Best Regards,

Vibha Deshmukh

*Plz mark useful answers

4 REPLIES 4
Read only

Former Member
0 Likes
2,013

same thread.

Read only

0 Likes
2,013

thnks for ur reply...

But then what is the purpose of saying in BDC synchronous processing and synchronous update as well as asynchronous

processing and asynchronous update .

So as i asked earlier is that processing and updating r same....

plzz clarify.......

Read only

Former Member
0 Likes
2,014

In batch session interface: - Asynchronous processing means Transfers data for multiple transactions - Synchronous database update means during processing, no transaction is started until the previous transaction has been written to the database.

In CALL TRANSACTION: - Synchronous processing means Transfers data for a single transaction. Synchronous and asynchronous database updating both possible The program specifies which kind of updating is desired. Separate LUW for the transaction The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.

Best Regards,

Vibha Deshmukh

*Plz mark useful answers

Read only

Former Member
0 Likes
2,013

both are use with CALL TRANSACTION METHOD.

In Synchronous process data is updated Record by record

and in Asynchronous process whole data of ceratin transaction is updated in one times means performance degrades..