‎2006 Oct 06 6:23 AM
Hi Experts,
Can any one tell me the difference between Synchronous and Asynchronous processing?
Thanks&Regards,
Naren.
‎2006 Oct 06 6:39 AM
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
‎2006 Oct 06 6:25 AM
‎2006 Oct 06 6:33 AM
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.......
‎2006 Oct 06 6:39 AM
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
‎2006 Oct 06 6:56 AM
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..