Hi,
I have a main bpm process with 2 subprocesses.
I start the subprocess via correlation message with a groovy script:
execution.getProcessEngineServices().getRuntimeService() .createMessageCorrelation(“Message_To_CHILD”).processInstanceBusinessKey(businessKey)
where businessKey is the same of main process.
When I try to send a correlation message from subprocess to main process I get the following exception:
No process definition or execution matches the parameters.
I use the following script from subprocess
execution.getProcessEngineServices().getRuntimeService()
.createMessageCorrelation(“Message_TO_PARENT”).processInstanceBusinessKey(businessKey).
In the parent process the businessKey is equals to istance id.
I have camunda under spring boot application.
Can you help me?
Regards
Antonio