Just a debugging tip I want to share.
I was debugging a transaction which updates database. Suddenly I realized that the selection parameters I have given in the selection screen were wrong. So to prevent database update,
There is an option provided in the debugger, Which is EXIT APPLICATION AND DEBUGGER.
The problem with that option is it exits application and debugger but all the updates happened till that point of time were committed.
The work around:
- Switch to classic debugger.
- Then Restart.
- You will be redirected back to Transaction screen.
These steps will prevent from updating the database.