How to create a report on Accounts to find Opportunities count and the sum of Amount in Salesforce?
1. Create a Report with "Opportunity" Report Type. 2. Group the Report by Account Name. Summarize the Amount field with Sum.Output:
1. Create a Report with "Opportunity" Report Type. 2. Group the Report by Account Name. Summarize the Amount field with Sum.Output:
SOQL on UserServicePresence can be used to track user status changes in Salesforce Omni-channel. Sample SOQL: SELECT Id, Name, User.Name, ServicePresenceStatus.DeveloperName, StatusStartDate, StatusEndDate FROM UserServicePresence WHERE StatusStartDate = LAST_N_DAYS:15 ORDER BY ....
Sample code: HTML: <template> <lightning-card> <lightning-combobox name="filter" label="Industry" value={selectedValue} options={options} onchange={handlePicklistChange} placeholder="Select Industry" read-only={readOnlyBool}> </lightning-combobox> <p slot="footer"> <lightning-button onclick={enablePicklist} label="Enable"></lightning-button> <lightning-button onclick={disablePicklist} label="Disable"></lightning-button> </p> </lightning-card> </template> JavaScript: import { LightningElement, ....
In the below implementation, I have created Custom quick action with Lightning Web Component to forward the records(Accounts) to the target org. Pre-requisite: Salesforce to Salesforce Setup: https://www.infallibletechie.com/2012/03/salesforce-to-salesforce-connection-2.html Sample code: ....
Create a Record Triggered Flow to populate Account when Contact is selected in Name(WhoId) while creating Task. Sample Flow:Find Contact from Who Id Salesforce Flow:Note:"003" used here is to make sure ....
Exception: You Cannot Reset your Password You Haven't Selected an Answer to Your Password Hint. Try the Following: Contact your Company's Administrator for Assistance. This Exception is thrown when the ....
Sample code: Apex Class: public class MassApprovalController { @AuraEnabled( cacheable = true ) public static List < MassApprovalWrapper > fetchPendingApprovalRecords() { List < ....
1. Create a Report with "Chat Transcripts" Report Type.2. Group the report by "Select all rows for Drill Down. Chat Button: Developer Name" Field.
"INVALID_TYPE: record type doesn't belong to" Salesforce Exception might be due to following:1. If you are using e.force:createRecord, make sure the RecordTypeId attribute has the correct record type id value.let ....
Path for Learning: https://trailhead.salesforce.com/career-path/adminFor jobs, check the following link:https://appexchange.salesforce.com/jobs To know the Roles of a System Admin in Salesforce, check the following linkhttps://www.infallibletechie.com/2014/11/roles-of-salesforce-administrator.html