Announcement
Collapse
No announcement yet.
"Event Sub-Process" with "Conditional Start Event" does not work
Collapse
X
-
Workaround. Using a separate Workflow that will broadcast a unique signal when a field is change. A process will listen to that signal to start a sub-process. A signal name can be a concatenation of some name with a record ID.
- Likes 1
Comment
-
1. Create a Workflow for Lead. With a trigger 'After record saved'. Add a condition Opportunity Amount > changed.
Add an action "Execute Formula Script" with this script:
Code:$signalName = string\concatenate('leadAmountChanged.', id); bpm\broadcastSignal($signalName);
Code:leadAmountChanged.{$id}
- Likes 1
Comment
Comment