Tag Archives: Salesforce.com

Process Builder in Salesforce

The Process Builder is a workflow tool that helps to easily automate the business processes by providing a powerful and user-friendly visual representation of the process as we build it. The Process Builder user interface has several functional areas that we should understand before creating a process.

This feature is available, as Beta, since Winter ’15 (Release Notes) and Generally Available since Spring ’15 (Release Notes). It available in Enterprise, Performance, Unlimited, and Developer Editions.

For example here is a scenario: Automatically create an Opportunity upon the creation of a Account for which Type = “Customer – Direct”
Step 1:
Go to Setup | App Setup | Create | Workflow & Approvals | Process Builder.

1

Step 2:
Review Process Builder start page and click ‘New” to start building.

2

Step 3:
Create new process.

3

Step 4:
Select the object to be evaluated (in this case, Account).

4

Step 5:
Review current process after object added.

5

Step 6:
Add criteria that will determine when action(s) will be triggered.

6

Step 7:
Name the criteria and select when actions should be evaluated.

7

Step 8:
Create filter condition.

8

Step 9:
Apply filter value (Type = “Customer – Direct”) and review your filter.

9

Step 10:
Save filter criteria.

10

Step 11:
Add a corresponding action.

11

Step 12:
Fill the action name and the required fields for the new Opportunity record.

12

Step 13:
Activate the process by clicking on “Activate” at the top right.

13

Review activated process.

13-1

Review all of your processes by navigating to “My Processes”.

13-2

Now you can create an account with type value “Customer – Direct”, and check automatically an Opportunity will create.

How to use apex:detail in visualforce page?

Apex Controller:

public class TestApexDetail {
    public Id AccountId {get;set;}
  
    public TestApexDetail() {
        Account objAC = [SELECT Id From Account LIMIT 1];
        AccountId = objAC.Id;
    }
}

Visualforce Page:

<apex:page controller="TestApexDetail">
    <apex:form>
        <apex:detail subject="{!AccountId}" relatedlist="false"></apex:detail>
    </apex:form>
</apex:page>

Output:

download