How transaction work in rolled back scenario and which tables are impacted

Hi Team,
I want to know how transaction work when incident occurred, and which tables are impacted.

Hi @Sanket
If you haven’t configured it differently in all “normal” environments (spring-boot, application server, etc…) the current transaction will be marked for rollback, if an exception is thrown.
The incident will be inserted into the database table ACT_RU_INCIDENT by Camunda (this of course is done in another transaction as the one that is rolled back).
Does this answer your question?