Hello all,
I wanted to know, whether can I change the existing process definition to another name or should I redraw a new BPMN diagram with a new name?
Thanks and Regards
Harshal Temkar.
Hello all,
I wanted to know, whether can I change the existing process definition to another name or should I redraw a new BPMN diagram with a new name?
Thanks and Regards
Harshal Temkar.
Process definitions are named after the process. If you have deployed a process (I guess this is your case) you cannot change the process name because that would imply altering the process xml.
You need to redeploy but you don’t need to redraw. Even if you dont keep the copy you deployed, you can download the xml from the engine and look for something like this:
<bpmn:process id="Process_1" isExecutable="true">
and just add a name and redeploy
<bpmn:process id="Process_1" isExecutable="true" name="cool name">
Hello Gcalvo
Thanks for your reply.