aura:if expression checks in Salesforce
Apex Class: public class AccountListController { @AuraEnabled public static List < Account > fetchAccts() { return [ SELECT Id, Name, Industry FROM Account LIMIT 10 ]; } } Lightning Aura ....
Apex Class: public class AccountListController { @AuraEnabled public static List < Account > fetchAccts() { return [ SELECT Id, Name, Industry FROM Account LIMIT 10 ]; } } Lightning Aura ....
1. Add Attendees field in the Event Page layout.2. Create a New Event to test it.
assignmentRuleHeader.useDefaultRule should be set to true using Database.DMLOptions to trigger Assignment Rule when the Case is created using Inbound Email Service. Sample Apex Class: global class createCaseInbound implements Messaging.InboundEmailHandler { ....
1. Run the below SOQL to get the PermissionSet Id. SELECT Id, Profile.Name FROM PermissionSet WHERE Profile.Name = 'System Administrator' 2. Use the PermissionSet Id from the step 1 and ....
1. Run the below SOQL to get the PermissionSet Id. SELECT Id, Profile.Name FROM PermissionSet WHERE Profile.Name = 'System Administrator' 2. Use the PermissionSet Id from the step 1 and ....
Draft emails feature in Salesforce allow the customer support agents who use the case feed to write and save messages without having to send them immediately. Reference Article - https://help.salesforce.com/articleView?id=sf.case_interaction_enabling_email_drafts.htm&type=5 ....
Exception: All subscriptions used - To subscribe to this report, first unsubscribe from another one Maximum number of Reports or Dashboards, an User can subscribe to is 7in Salesforce. So, ....
FeedItem FeedItem represents an entry in the feed, such as changes in a record feed, including text posts, link posts, and content posts. This object is available in API version 21.0 ....
SOQL:SELECT Id, Name, CreatedById FROM Topic WHERE CreatedById = '0054x000003WYaSAAW'
1. Configure Error Handler Dialog. 2. Instead of Transfer to Agent use Show a Menu with Options. Add some user friendly message to the user. Output: