|
Synchronous and Asynchronous BAPI |
|
|
|
|
Written by P. Renjith Kumar
|
|
Wednesday, 16 May 2007 |
|
Synchronous BAPIs Synchronous means we will have the action immediately . Synchronous BAPIs are generally used to read data from a remote logical system, for example to display a customer list. Asynchronous BAPIs Asynchronus will perform the action in background . Asynchronous BAPIs are generally used for replicating data on one or more logical systems, for example to distribute article master data.
Look this function module : BAPI_TRANSACTION_COMMIT CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' EXPORTING WAIT = IMPORTING RETURN = If we set the WAIT (WAIT = 'X'.) parameter of BAPI_TRANSACTION_COMMIT, Then we have converted a BAPI to Syncronous BAPI or else it is Asyncronous.
Related Items:
|
|
Last Updated ( Wednesday, 16 May 2007 )
|