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
Gokul Pillai 1Gokul Pillai 1 

Updating a field on Contact when Opportunity is marked as 'Closed Won'

I have a requirement where I have to update a field named Send_Purchase_Notification__c on Contact whenever an Opportunity Stage is marked as ''Closed Won. Is there any way of achieving this requirement non - programmatically?
Rajesh3699Rajesh3699
Hi

Assuming you are still using the lookup relationship b/w contact and opportunity object, you can achieve this requirement by process builder.
Call the process builder when the opportunity stage is closed won and in process builder you can select field update as action and choose related records and search for contact field.
Hope this helps

Thank You,
Adiga.