Category: Salesforce
Salesforce | Send daily emails using workflows till the status changes
We have a custom object Survey and it has a status field with the values: New, Pending and Purchase. When Survey is in Pending status we want to send email to the user on every second day till the status
Salesforce | Formatting date and numbers on VF page
Problem: How to format output text field value on VF page and also number formatting? Description: In a situation I have date field on the vf page which is binded to date field having value in format “Thu Dec 1
Salesforce | Editing a task assigned to another user by task owner
Problem: Task owner was not able to edit the task which is assigned to other user. I have a situation where a system admin assigns a standard user as an owner of the lead. Like in my case Abc is
Salesforce | Fetch all the tasks related to an sfobject
Description: I have a situation where I want to fetch all the tasks related to the account object. Solution: You get all the task records which belong to any of SF object using single SQL query. For Single object: For
Salesforce | ALL ROWS
How to get all records of sfobject including records in recycle bin of salesforce and undelete the records? List objlst = [select id,isdeleted from sfobject ALL ROWS]; //Just add ALL ROWS at the end of SOQL, it retrieves all the
Salesforce: Execute flow from Process Builder
How to execute flow from Process Builder in salesforce? Sometime it is very useful to execute flow from the Process Builder. We can execute as many flows as we want. Flow can be used to create record, update record or
Salesforce | Best Practices
Best Practices for Salesforce For Apex Classes: 1. Use Asynchronous Apex methods like @future methods, batch processing, scheduler that does not need to be executed synchronously. 2. Asynchronous Apex should be “bulkified”. It means able to handle collections of records.
Salesforce | Steps to create Web To Lead form
Steps to create Web To Lead form in Salesforce Steps To Follow: 1. Login to your Salesforce account. 2. Click on Setup. 3. Under Build, section click on customize. 4. Click on Leads. 5. Under leads click on the web
Salesforce | Why to use @TestVisible annotation
Problem: Why we use @TestVisible annotation for a private method and private variable of a Class in Salesforce? Description: I have a situation where I want to call a private method of a class in the test class, whenever I
