‎2007 May 27 6:11 AM
why we r using call transaction method ? by using session method we can upload the huge amount of data? but call transaction doesn't?
‎2007 May 28 4:48 AM
hi,
With CALL TRANSACTION USING, the system processes the data more quickly than with batch input sessions. Unlike batch input sessions, CALL TRANSACTION USING does not automatically support interactive correction or logging functions.
if you have run time validation while updating the data into SAP R/3 Transaction,then use BDC Call Transaction.
We can update the database synchronously as wellas asynchronously.
Your program prepares the data and then calls the corresponding transaction that is then processed immediately.
The most important features of CALL TRANSACTION USING are:
Synchronous processing
Transfer of data from an individual transaction each time the statement CALL TRANSACTION USING is called
You can update the database both synchronously and asynchronously
The program specifies the update type
Separate LUW (logical units of work) for the transaction
The system executes a database commit immediately before and after the CALL TRANSACTION USING statement
No batch input processing log
‎2007 May 28 4:48 AM
hi,
With CALL TRANSACTION USING, the system processes the data more quickly than with batch input sessions. Unlike batch input sessions, CALL TRANSACTION USING does not automatically support interactive correction or logging functions.
if you have run time validation while updating the data into SAP R/3 Transaction,then use BDC Call Transaction.
We can update the database synchronously as wellas asynchronously.
Your program prepares the data and then calls the corresponding transaction that is then processed immediately.
The most important features of CALL TRANSACTION USING are:
Synchronous processing
Transfer of data from an individual transaction each time the statement CALL TRANSACTION USING is called
You can update the database both synchronously and asynchronously
The program specifies the update type
Separate LUW (logical units of work) for the transaction
The system executes a database commit immediately before and after the CALL TRANSACTION USING statement
No batch input processing log
‎2007 Oct 03 7:53 AM