Salesforce Resources in Events
Use a resource calendar to schedule the use of a shared resource, such as a conference room or an overhead projector. 1. Go to Public Calendars and Resources in Setup. 2. Create ....
Use a resource calendar to schedule the use of a shared resource, such as a conference room or an overhead projector. 1. Go to Public Calendars and Resources in Setup. 2. Create ....
Sample Lightning Web Component: HTML: <template> </template> JavaScript: import { LightningElement, api } from 'lwc'; import { updateRecord } from 'lightning/uiRecordApi'; import { ShowToastEvent } from 'lightning/platformShowToastEvent'; import DESCRIPTION_FIELD from ....
Pre-release Org Sign Up - https://www.infallibletechie.com/2021/04/how-to-sign-up-for-salesforce-summer-21.htmlNew Omni-Channel CapacityThe status-based capacity limit increased to a maximum of 100 simultaneous work items per agent. Increasing status-based capacity facilitates long-term planning for high-volume ....
1. Enable Change Data Capture for Event Relation. 2. Create an Organization-Wide-Email Address. 3. Create the below trigger. rigger EventRelationChangeEventTrigger on EventRelationChangeEvent ( after insert ) { Map < Id, ....
Salesforce Lightning Scheduler helps customers and prospects in scheduling appointments with the right person in the Organization at the right time and location. Lightning Scheduler can be used to quickly ....
Salesforce Classic: Event invitee email notifications are only sent from Salesforce when you Invite People to an Event and Schedule Resources in Salesforce Classic. Salesforce Lightning Experience: It is not ....
Salesforce Help Article - https://help.salesforce.com/articleView?id=sf.entitlement_process_queue.htm&type=5 1. Go to Setup. 2. Go to Monitor --> Entitlement Processes. 3. Enter the criteria and click "Search" button."WorkflowTimeQueue" is the sObject, where these rows are inserted.
Sample Code: Apex Class: public with sharing class OpportunityContactRoleController { @AuraEnabled(cacheable=true) public static OpportunityContactRoleWrapper fetchOpptyCons( String strRecordId ) { OpportunityContactRoleWrapper objWrap = new OpportunityContactRoleWrapper(); List < ContactWrapper > availableCons = ....
1. Set embedded_svc.settings.language = 'ja'; for Japanese language. 2. Enable Translation in Salesforce. Add Japanese language. 3. Do the Translation for the custom fields. Output:
HTML: <template> <lightning-input-rich-text value={myVal} onchange={handleChange}> </lightning-input-rich-text> <lightning-button variant="brand" label="Click!" title="Looks like a link" onclick={handleClick} class="slds-m-left_x-small"></lightning-button> </template> JavaScript: import { LightningElement } from 'lwc'; export default class SampleLWC extends LightningElement { ....