diff --git a/workflow/workflow-demos/processes/BusinessNotification/OrderProcess.p.json b/workflow/workflow-demos/processes/BusinessNotification/OrderProcess.p.json index 71b1a695a..1e0292295 100644 --- a/workflow/workflow-demos/processes/BusinessNotification/OrderProcess.p.json +++ b/workflow/workflow-demos/processes/BusinessNotification/OrderProcess.p.json @@ -215,7 +215,7 @@ "*/", "BusinessNotification", " .create()", - " .message().fromCms(\"/Notification/Messages/OrderDelivered\", in.order.product, in.customer.surname, in.customer.name)", + " .message().fromCms(\"OrderDelivered\", in.order.product, in.customer.surname, in.customer.name)", " .receivers().ofCase().addAllInvolved()", " .send();" ] @@ -281,7 +281,7 @@ " .create()", " .template(\"Order\")", " .payload(in.customer)", - " .message().fromCms(\"/Notification/Messages/InvoiceSent\", in.order.product)", + " .message().fromCms(\"InvoiceSent\", in.order.product)", " .receivers().ofTask().addActivator()", " .send();" ] @@ -350,7 +350,7 @@ " .create()", " .template(\"Order\")", " .payload(in.customer)", - " .message().fromCms(\"/Notification/Messages/OrderFinished\", in.order.product)", + " .message().fromCms(\"OrderFinished\", in.order.product)", " .receivers().ofCase().addAllInvolved()", " .send();" ]