2008 Jan 29 7:14 AM
Hi,
I have an ABAP program using call transaction to update 100 records into the database...if the power failure occurs in the middle of execution of the program...what happens....what should be done from there on??
Hi,
I have an ABAP program using call transaction to update 100 records into the database...if the power failure occurs in the middle of execution of the program...what happens....what should be done from there on??
2008 Jan 29 7:22 AM
2008 Jan 29 8:33 AM
Hi
It depends on Update mode.
If u use update mode Synchronous, All updations will be
rollbacked.
If u use Asynchronous mode,
for example In 100 records, 50 recordds completed
In the case of 51th record power failure happens. These 50 records should be updated to database.Next time u start the bdc starts from 51th record.
If it helpful rewards points.
Regards
Pratap.M