In BDC session method or call transaction method which is preferable?
Why we have to go for session for more records n ctm for less records any reason ?
Updated May 18, 2018
In BDC session method or call transaction method which is preferable?
Why we have to go for session for more records n ctm for less records any reason ?
Comments
It depends on situation. If we have large amounts of data, only one transaction, required synchronous processing or error needs to handle implicitly then we should go for BDC Session.
When we have small amount of data, multiple transactions, required for asynchronous processing or error needs to handle explicitly then we should go for BDC Call Transaction.
First of all we need to analyse and depending on situation we must choose BDC Session or Call Transaction.