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

regarding session method

Former Member
0 Likes
444

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
421

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

3 REPLIES 3
Read only

Former Member
0 Likes
421

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.

Read only

Former Member
0 Likes
422

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

Read only

0 Likes
421

thank u for u r reply.

I rewarded full points to you.

surya