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.
Answer Posted / sainathraj
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 |
Post New Answer View All Answers
What is a sequence of event-triggered in report?
What are the abap/4 commands that link to a layout set?
What are the components in sap application server?
What is luw?
What is the tcode to create indexes?
when does a list get sent to the screen on the presentation layer?
When to use logical database?
Did you create help views?
What is an on”*-input filed” statement?
Why is pretty printer user in abap?
Differentiate between transparent tables, cluster tables and pooled tables
Does the table can have multiple foreign keys?
I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/
What is an update type with reference to a match code id?
What are internal tables? How do you get the number of lines in an internal table?