Salesforce Interview Questions with Answers Part 65
1. Fault Connector in Salesforce Flow While a connector element determines the normal path of flow execution, a fault connector is executed at runtime only when its source element results ....
1. Fault Connector in Salesforce Flow While a connector element determines the normal path of flow execution, a fault connector is executed at runtime only when its source element results ....
Sample Code: HTML: <template> <div class="slds-box slds-theme--default"> <table class="slds-table slds-table_cell-buffer slds-table_bordered slds-table_striped"> <thead> <tr class="slds-line-height_reset"> <th class="" scope="col"> ....
In Lightning Web Component lightning-datatable tag, draft-values and onsave attributes can be used make editable data table. Sample Code: HTML: <template> <lightning-card> <div class="slds-m-around_medium"> <lightning-datatable key-field="Id" data={records} columns={columns} hide-checkbox-column draft-values={draftValues} ....
Below are some of the options for Data Masking in Salesforce Option 1. Use Salesforce Data Mask(Recommended process for easy and fast data masking) - https://trailhead.salesforce.com/en/content/learn/modules/salesforce-data-mask https://www.infallibletechie.com/2020/02/salesforce-data-mask.html Option 2. We ....
In this blog post, below requirements are handled through Pre-Chat API1. Creating Contact2. Creating Case3. Linking Case to the Contact4. Linking Case and Contact to the Chat Transcript5. Showing the ....
1. Create a simple Screen Flow. Get Records: User Details:User Last Login Assignment:Update User Last Login:2. Create a Login Flow and call the Flow from it.Output:
Sample Code: HTML: <template> <div class="slds-box slds-theme--default"> <table class="slds-table slds-table_cell-buffer slds-table_bordered slds-table_striped"> <thead> <tr class="slds-line-height_reset"> <th class="" scope="col"> ....
Sample Code: Apex Class: public with sharing class AccountController { @AuraEnabled( cacheable = true ) public static List< Account > fetchAccounts() { return [ SELECT Id, Name, Industry, Rating, Type, ....
Sample Command:sfdx force:source:deploy -p "force-app/main/default/classes/AccountListController.cls,force-app/main/default/lwc/example,force-app/main/default/lwc/sample"
1. Create a Quick Action on Case object with the name Close Case and Action Type as "Update a Record". In the Predefined Field Values, set Status field value to ....