Call Java methods from Decision Table output

I am new to Camunda Process Engine and wan to implement below given example
Can I call java method from a Decision table output??

e.g. I want to execute method to send email based on the decision taken using the Decision table

  • INPUT - startDate of task - will check if the startDate of the Task has exceeded 15 day SLA time
  • OUTPUT - I want to call a java method to send ‘15 day SLA exceeded’ email

Can we achieve this using the decision table in camunda, any kind of help is appreciated.

Please refer below DMN table image:

Thanks

Hi @vikramugwekar,

the easiest way to do this is to wrap the decision and the mail sending in a process.

It can look like this: https://cawemo.com/share/2343dc54-d2a0-489e-9175-331fcf6a4102

Hope this helps, Ingo

Thanks @Ingo_Richtsmeier I trying somewhat same model for my implementation