Lead with Inactive Owners Report in Salesforce
1. Go to Report Types. 2. Create a new Lead Report Type. 3. Save the Custom Lead Report Type. 4. Click "Edit Layout". 5. Select "Add fields related via lookup". ....
1. Go to Report Types. 2. Create a new Lead Report Type. 3. Save the Custom Lead Report Type. 4. Click "Edit Layout". 5. Select "Add fields related via lookup". ....
Sample Apex Class: public class Sample { public Sample() { } public PageReference goToInfallible() { PageReference pg = ....
Custom metadata is customizable, deployable, packageable, and upgradeable application metadata. First, you create a custom metadata type, which defines the form of the application metadata. Then you build reusable functionality ....
The customer engagement score is a single number that is used to measure how engaged your customers and free trial prospects are. Each customer has their own score based on ....
Custom Metadata Types https://www.infallibletechie.com/2015/11/custom-metadata-types.html CRUD for External Objects Salesforce now supports CRUD permission for External Objects records. Lightning Experience Sales Wave Analytics App Omni-Channel Lightning Experiece for Custom Objects Next ....
Mobile devices can lose connection at any time, and environments such as hospitals and airplanes often prohibit connectivity. To handle these situations, it’s important that your mobile apps continue to ....
If you face "System.UnexpectedException: No more than one executeBatch can be called from within a testmethod. Please make sure the iterable returned from your start method matches the batch size, ....
Each dashboard has a running user, whose security settings determine which data to display in a dashboard. If the running user is a specific user, all dashboard viewers see data ....
Sample Class: public class LeadCreation { public Lead objLead; public String lastName; public LeadCreation() { } ....
Sample Class: public class LeadCreation { public Lead objLead; public String lastName; public LeadCreation() { } public PageReference newLead() { objLead = new Lead(Company = 'Test', LastName = lastName, Status ....