BDC CALL TRANSACTION carry on synchronous processing and
update the database both synchronously and
asynchronously,where session method carry on asynchoronous
processing and update the database synchrousnously.I want
to know the meaning of synchronous and asynchronous
processing and also the meaning of synchronous and
asynchronous database update.
Answers were Sorted based on User's Feedback
synchronous means one after the other.
Asynchronous is whole at a time.
Synchronous processing means processing the transactions(i.e
records) one by one.i mean a transaction is done if and only
if the previous transaction is completed.
Synchronous Update means after processing of transactions
records are stored into the database synchronously.I mean if
one transaction is processed it is immediately updated to
database.
Asynchronous processing means processing the transactions
all at a time.
Asynchronous update means updating the database with all the
records at a time. i.e not one by one
in session method all the transactions are processed and
kept in session.the session is then processed and records
are updated to database one by one.
Is This Answer Correct ? | 45 Yes | 0 No |
Answer / praveenkumar lingutla
In synchronous processing the transaction is done by one after another and it depend on previous transaction.
In the Asynchronous processing all the transactions is done
at a time.
synchronous update if the legacy system have 5 records the 4 records are correct one record i.e, the 3rd record is error then the process is as follows 1st 2nd records are done successfully but 3rd record is so stop the process.
In the asynchronous update the process is not stopped directly it it goes to the data base
Is This Answer Correct ? | 2 Yes | 0 No |
What is the typical structure of an ABAP/4 program?
how bapi is different from call transaction/session?
When i create a Table Maintenance Generator ,which is the event that will Trigger ?
Internal table itab contains some records. If the code is like this : LOOP AT ITAB. APPEND ITAB. ENDLOOP. What ill be the result??
What is the difference between skip and new-line?
What is the diff between database view and maintenance view?
when does the secondary index should be used what role it play when we use secondary index in tables
Can i create a Table without a Data Element ? How ?
How the Sy-Mandt value gets updated in the table and Is this having any foreign key relationship.
How can a lock object be called in the transaction?
what is the table name of stock of material
what is abstract classes