SOQL to find user part of Queues
Sample SOQLs:SELECT UserOrGroupId, COUNT( Id ) FROM GroupMember WHERE GroupId IN ( SELECT Id FROM Group WHERE Type = 'Queue' ) GROUP BY UserOrGroupId For User levelSELECT UserOrGroupId, COUNT( Id ) ....
Sample SOQLs:SELECT UserOrGroupId, COUNT( Id ) FROM GroupMember WHERE GroupId IN ( SELECT Id FROM Group WHERE Type = 'Queue' ) GROUP BY UserOrGroupId For User levelSELECT UserOrGroupId, COUNT( Id ) ....
lightningStylesheets, apex:slds and apex:includeLightning in Salesforce. lightningStylesheets="true" Make Visualforce apps look better in Lightning. <apex:slds/> To use markup specified by SLDS in Visualforce page. There are three steps to add ....
Sample Code: HTML: <template> <div class="slds-p-around_medium lgc-bg"> <lightning-tree-grid columns={gridColumns} data={gridData} ....
Compact layouts control which fields your users see in the highlights panel at the top of a record. The fields in the Highlight panel are rendered from the Compact layout. In ....
Searching for multiple field values in SplunkIN operator can be used to search for multiple field values in SplunkSyntax:field IN (value1, value2, value3)Sample:userId IN (123, 456, 789, 587)
1. Use target as "_self". 2. Use "/lightning/r/" as the path.
Sample code: HTML:<template> <lightning-card title="EmpApi Example" icon-name="custom:custom14"> <div class="slds-m-around_medium"> <p>Use the buttons below to subscribe and unsubscribe to a streaming channel!</p> <lightning-input label="Channel Name" value={channelName} onchange={handleChannelName}></lightning-input> <lightning-button variant="success" label="Subscribe" title="Subscribe" onclick={handleSubscribe} ....
1. Check whether the user has the necessary Edit and Delete permissions, either via a profile or permission set. 2. If it is in Lightning Experience, make sure the page ....
1. Enable "Available for Lightning Experience, Lightning Communities, and the mobile app" for a Visualforce page to make it available in the Lightning App Builder. 2.Enable My Domain in your ....
Sample Push Topic: PushTopic pushTopic = new PushTopic(); pushTopic.Name = 'AccountUpdates'; pushTopic.Query = 'SELECT Id, Name, Phone FROM Account WHERE BillingCity=\'San Francisco\''; pushTopic.ApiVersion = 48.0; insert pushTopic; Sample Lightning Web ....