‎2007 Nov 20 2:13 PM
can anybody explain in brief about implicit ROLLBACK and explicit rollback and the difference between them and the procedure to work with it in REAL TIME..
‎2007 Nov 20 2:15 PM
Implicit Database Rollbacks in the R/3 System
Explicit Database Rollbacks in the R/3 System
You can trigger a database rollback explicitly using the ABAP statement ROLLBACK WORK. This statement starts a database rollback, but also performs other tasks (refer to the keyword documentation for ROLLBACK WORK).
‎2007 Nov 20 2:15 PM
Implicit Database Rollbacks in the R/3 System
Explicit Database Rollbacks in the R/3 System
You can trigger a database rollback explicitly using the ABAP statement ROLLBACK WORK. This statement starts a database rollback, but also performs other tasks (refer to the keyword documentation for ROLLBACK WORK).
‎2007 Nov 20 2:15 PM
ROLLBACK WORK. this will revert changes to database since last database commit.
suppose u have two insert statements, if second insert fails, u need to revert changes done by first one. u can use this statement.