Update records with Salesforce Process Builder ?

The Process Builder is one of my favorite Salesforce automation tools. It can help administrators implement useful automated business processes without a single line of code. It can send automated notifications, create or update records, it can even schedule a future action. Of course, I’m not saying it doesn’t have its limitations. But we can’t deny the fact that without it, a Salesforce solution would be built with more than 50% Apex development. 

Actually, during all these years that I’ve been working on Salesforce, the most frequent questions that I’ve been asked, and the most errors that I’ve been asked to troubleshoot, were related to Process Builder.

Thus, I’ve decided to make a series of posts related to Process Builder. This one is mainly focusing on the action “Update a record”. From my experience, it can be used for various reasons, I’ll give at least one example for each case. This action gives two options :

Option 1 : Update the record which started the process

I think that this is the most commonly used. Very simple. You basically use this option to update a field on the same record that started the process, based on some conditions (make sure to add conditions, “No condition” option is not a recommended option. I’ll talk about this in another post :)).  You can use this one to update a picklist value based on some combined conditions, or to fill a text field using a pre-built formula. For example, you can use this option to update every asset name to be normalized respecting the format “Account Name + Serial Number”. 

Option 2 : Update a related record

This option actually lets you handle two cases :

  1. Update a related parent record : when you chose this option, every lookup or master-details relationship will be suggested to you. Here’s a tip, make sure to select the one ending with ID without the arrow. The one suggested with the arrow, let’s you go even further to select a relationship of the related object you select. For example, if you want to update the Account related to a Case, make sure to select “Account ID” as shown in the illustration below. Record to Update Option
  2. Update a related children records : when you chose this option, every child object that has a lookup or master-details relationship referring to the object that initiated the record, will be suggested. We can easily identify them but their plural form. They are all listed with “s” at the end. For example, if you want to update all Case Comments, you have to select CaseComments as shown in the illustration below.

I hope this will help you use the Salesforce Process Builder in a more efficient way. 

Feel free to leave a comment or ask a question if you have any.


Salesforce – How to update entitlement process versions with one click ?

As a certified Service Cloud consultant, Salesforce administrators often wonder if there a simple way to update an entitlement process version. Because they either update their entitlement records manually or using Dataloader.

As a matter of fact, every entitlement record created should be related to an entitlement process, or to be more precise to an entitlement process version.

As we can see in the Caption 1 below, the “Phone Support” entitlement record is related to the version 2 of the entitlement process called “Entitlement Process”.

Caption 1 : Entitlement record related to an entitlement process

So far so good. But the problem occurs when we update the entitlement process into a new version. If we want the new rules to apply to the existing entitlements, we have to update the lookup relationship into the new version. Which means that the entitlement process relationship in the Caption 1, should become “Entitlement Process – version 3” for example.

You can indeed do it manually if you have one or few entitlement records. But if you have hundreds or thousands records, it can quickly become a time consuming task.

Well. The good news is, that there is indeed a way much easier way to do it.

Go to your entitlement process following the usual link : Service Setup > Entitlement Management > Entitlement Processes

Under the “Milestone” section, there a section called “Entitlement and Support Record Update Rule” (see Caption 2 below), follow these steps :

  1. Click on “New Update Rule”
  2. Select the old version to update from (in our example before, it will be the version 2)
  3. Click on “Save”
  4. A view of the rule created will be shown. Click on “Start” to trigger the update.
Caption 2 : Entitlement and Support Record Update Rule
Caption 3 : Update rule creation
Caption 4 : Create update rule

It even shows an estimated number of entitlement records that will be updated. And once the rule triggered, you keep a history of the updated versions (see Caption 5).

Caption 5 : History update rules applied

This is my tip of the week, I’ll come with a new post next Sunday.

Feel free to comment if you have any questions and keep on improving your Salesforce users’ experience 😉