Hello,
How to stop a BPM process when a created entity in the process (Opportunity) is deleted?
I created Event Sub-Process with "Target: Created: Opportunity".
As signal I try use:
1. delete.Opportunity.id
2. delete.Opportunity.{Id}
3. delete.{Opportunity.id}
4. in script :
$ ids = opportunitiesIds;
and then in signal:
delete.Opportunity.{$ids}
All 4 ways don't work. I will be grateful for any suggestion.
How to stop a BPM process when a created entity in the process (Opportunity) is deleted?
I created Event Sub-Process with "Target: Created: Opportunity".
As signal I try use:
1. delete.Opportunity.id
2. delete.Opportunity.{Id}
3. delete.{Opportunity.id}
4. in script :
$ ids = opportunitiesIds;
and then in signal:
delete.Opportunity.{$ids}
All 4 ways don't work. I will be grateful for any suggestion.
Comment