Start the same process from two different actors .

1
0
-1

I have a necessity to create a project that can be started from either a technician or a consumer, so they will be two different actors. How to do this?

1 answer

1
+1
-1
This one is the BEST answer!

Create an actor filter that does

if (actor === 'technician' || actor === 'consumer'){
return true;}
else{
return false;
}

or

Create an organizational group that contains both technicians and consumers and then use this in your actor filter.

regards
Seán

PS: If this reply answers your question, please mark as resolved.

Comments

Submitted by kristi.dalipaj on Thu, 06/30/2016 - 12:01

Works fine, thank you.

Notifications