‎2007 Dec 10 7:01 AM
Hi
I have doubt abt session method.I read so many threads but my doubt is not clarified.
Thats why i am postin this question
1) What do you mean by processing first ?
2)What is Asynchronous processing in session method?
3)what is synchronous processing in call transaction method?
I am not talking about updating..I understood about updating...Pls tell me about proceesing.............
thanking u all...............
surya
‎2007 Dec 10 12:45 PM
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.
http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
‎2007 Dec 10 11:37 AM
Hi Surya,
Processing means how the records will be processed in the database. In synchronous processing the records will be updated in the database table as soon as one record is updated. Then processing of next record will start .But in the Asynchronous processing one record will be processed , then it may happen that processing of second record will start prior to the updation of first record.
Thanks,
Aditya.
‎2007 Dec 10 12:45 PM
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.
http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
‎2007 Dec 12 5:20 AM