Hi Experts,
I want to know the possibility to start the process in camunda whenever a row is inserted in DB table.
Is it possible ? How to achieve this
Regards
Aj
Hi Experts,
I want to know the possibility to start the process in camunda whenever a row is inserted in DB table.
Is it possible ? How to achieve this
Regards
Aj
Camunda itself doesn’t really a feature like this - but if you find a way to trigger some code based on the DB it’s easy to start a process
Hi @ajay,
a possible pattern to achive this is to use this process
which polls for new datasets. Then the process instances can be started.
Hope this helps, Ingo
Yes, thanks a lot @Ingo_Richtsmeier
I will try this approach
It Works ! Thanks