Process Modification - impacted DB tables

Hi,
Need help on finding the tables names that gets impacted when i use runtime service to modify a process instance.

runtimeService.createProcessInstanceModification(processInstanceId)
  .cancelAllForActivity("declineLoanApplication")
  .startBeforeActivity("processStartEvent")
  .annotation("Modified to resolve an error.")
  .execute();

Hi @Prachi,

When you enable database logging on your process engine, you can help yourself: Logging | docs.camunda.org

Hope this helps, Ingo

1 Like