Name field in Salesforce
Name field in Salesforce is the first field which gets created while creating a custom object. The field type can be any one of the following 1. Text 2. Auto ....
Name field in Salesforce is the first field which gets created while creating a custom object. The field type can be any one of the following 1. Text 2. Auto ....
1. Open a lead and click "Find Duplicates" button. 2. Matching leads related list shows the related leads. Click "Merge" button after selecting the leads to merge. 3. Select the ....
1. Open Command Prompt. 2. Go to the folder where your files are present. 3. Use this command "findstr /s /i Test *.*" to search string 'Test' from multiple files in ....
Sample build.xml: <target name="retrieve" depends="proxy"> <sf:retrieve username="${sf.sandboxusername}" password="${sf.sandboxpassword}" serverurl="${sf.sandboxurl}" retrieveTarget="Retrieve" unpackaged="package.xml"/> </target> Sample package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>*</members> <name>CustomObject</name> </types> <version>30.0</version> </Package> Cheers!!!
To maintain variable value inside the Salesforce Batch class, Database.Stateful can be used. Sample Class: global class Class_Name implements Database.Batchable<sobject>, Database.Stateful { Integer i = 0; global Database.QueryLocator start( Database.BatchableContext ....
Your organization can use alerts that automatically send an email notification for opportunities with large amounts. Customize this alert to send an email when an opportunity reaches a threshold. Your ....
Represents a role for an account Partner, such as consultant, supplier, and so on. We can find partners related list in 1. Account 2. Opportunity Steps to implement: 1. Open an ....
1. Go to Products --> Schedule Setup. 2. Enable the schedule. 3. Open an Opportunity Product and click "Establish" button. 4. Choose the schedule type. 5. Confirm the schedule. To ....
In order to use Record Type Name in Validation Rule in Salesforce, check the below image
1. Go to Deploy --> Deployment Status. 2. Select your job. 3. Click "Cancel" button. Cheers!!!