[SalesForce] update picklist value using process builder

I have a object called job application and another object called Interview. On interview I have a lookup relationship field to the job application object.

I have a picklist field called status in job application. I have a pick list field called recommendation in Interview. I would like to update the status on job application based on the recommendation field. I was thinking to use cross object update but it only works in Master-detail relationship. How can I achieve this? Is it possible through process builder.

Best Answer

Yes. You can update related records in Process Builder.

Select Interview as object node and select criteria node based on recommendation field.

enter image description here

Then create a immediate action as update records and select Job Application. There you can set the status field based on the criteria node (based on recommendation).

You you create each criteria node for each value in recommendation field in Interview object.

Hope is helps.

Related Topic