How to get your work history report by PF
If you want to know your complete employment history( details all of your previous employment). When you apply for a new position, a potential employer may request a work history report to know more about your job experience and how it relates to the position If your previous employer gave […]
How Salesforce Delivers Exceptional Service Using Service Cloud
how-salesforce-uses-service-cloud-ebook
How to Calculate and Improve Customer Retention Rate
By Amanda DiSilvestro; When a company talks about analysing calculations, it can be intimidating. However, once you get a handle on the right metrics and what benchmarks customers expect, it turns into a simple process. Customer retention rate (CRR) is a great place to start: It’s easy to calculate. It’s […]
How to Invoke a Flow from a Lightning Web Component
Use Case First, we create a contact record from the screen flow then we will fire a toast message and navigate to the contact to record detail page. How to Fire a Toast Message in Flow? Will start first with creating a screen flow, where the user enters some inputs […]
Sending Automated Emails to All Related Contact Roles When an Opportunity is Won
For users who would like for all of the Contact Roles to be automatically emailed after a related Opportunity is Closed Won, this can be accomplished by creating a Record-Triggered Flow. If users forget to add a Contact Role, this Flow will not send any emails and still allow the […]
TestSetUp method in apex test classes
@testsetup annotation in test class method Test classes are an important part of overall SDLC in Salesforce. We as a developer have to write the test classes very often, and we need to create the test data as well, to have our test class executed successfully. We’ll cover a new concept […]
What is Test class in Salesforce Apex
We know that Testing is an important part of SDLC(Software Development Life Cycle). In Salesforce when you want to deploy classes or Triggers from one org to another org, Salesforce requires at least 75% of your code to be covered by the test classes. So, Salesforce wants to make sure […]
Salesforce Data Migration with DataLoader or Data Import Wizard
Data Migration in Salesforce Salesforce offers two main methods for importing data. Data Import Wizard—this tool, accessible through the Setup menu, lets you import data in common standard objects, such as contacts, leads, accounts, as well as data in custom objects. It can import up to 50,000 records at a […]
Validation Rules Examples in Salesforce
If you are looking for validation rule examples then salesforce has shared a list of examples. In this post i am sharing list but i will also explain that how we need to write a validation rule. Some of the validation rules that I found useful are Postal code is […]
Lightning Component(Aura) To Display Contacts Related To Particular Account
Step 1: Create Apex Class for fetching Contact Details : We need to use the notation “@AuraEnabled” before the method to make it available in the Aura component.public class AccountClass { @AuraEnabled public static list<Contact> getRelatedList(Id recordId) { List<Contact> Conlist = [Select id, name,firstname,lastname,Title,Email,Phone from Contact where AccountId=: recordId ]; return Conlist; }}Step 2: Create a New Lightning […]