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
Rich FiekowskyRich Fiekowsky 

How to stop Datafox from changing Owners of Opportunities?

We have Salesforce Sales Cloud with Datafox and CPQ. The Datafox User occasionally changes the Owner of an Opportunity immediately after Lead Conversion creates the Opportunity. Why? How to control it?  
 
VinayVinay (Salesforce Developers) 
Hi Rich,

Create a validation rule to prevent Datafox users on changing owner of the opportunity.

Something like below.
AND( Owner.Username <> 'Datafox Username', ISCHANGED( OwnerId ), NOT( ISNEW() ) )

Hope above information was helpful.

Please mark as Best Answer so that it can help others in the future.

Thanks,
Vinay Kumar