function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SeanOSeanO 

Record Assignment Rules Custom Object

Hi All

I have a custom object for RFPs.  What I need is when sales submits the RFP for pricing I need the owner of that record to round robine evenly between 3 people.

Step 1 - The sales rep fills out the RFP information and then changes the status to Submitted. 
Step 2 - I now want this to round robin evenly between 3 other employees

Its a pretty simple I think it can be done with a few workflows and field updates just not sure how

thank you in advance for your help
Sonam_SFDCSonam_SFDC
I would suggest the following approach:

Since round robin cannot be setup through the assignment rules or direct workflows - you can do the following..

1)create an auto number which increments with creation of each RFP

2)Write a trigger on RPF object at insert - Store the 3 expected owners in a list and using the auto number - get the owner of the previous RPF created and compare the owner name in the owner list and assign it to the next available owner from the list.If the list ends - start over the assignment again.

Hope this helps!
SFDC 2017SFDC 2017
can you post the Example Trigger for that.Please...