Apex Trigger Practice (5) – Rollup Amount from Opportunity to Account
COMPONENTS On Standard Object – Account, there are following fields Total Revenue (Total_Revenue__c) (Number (16,2)) On standard Object Opportunity, which is child of Account Object, there are following fields StageName: Having value “Closed Won” Type: Having values Renewal, Upsell, New Business RenewalAmount__c : (Number (16,2)) UpsellAmount__c : (Number (16,2)) NewBusiness__c : (Number (16,2)) REQUIREMENT For …
Apex Trigger Practice (5) – Rollup Amount from Opportunity to Account Read More »
Custom Live Chat Using Salesforce Live Chat REST API
PREFACE We may choose to build a custom live chat app using Salesforce Live Chat REST API. There may be below given reasons or any specific reasons: Custom Experience:- Header, Footer, Navigation, Offline Form, Pre-chat Form Security Reason:- Salesforce generated embedded service snippet code does not require authentication and works publicly. Also, the script may …
Custom Live Chat Using Salesforce Live Chat REST API Read More »
Maximum SOQL offset allowed is 2000 for Pagination
Salesforce Help Article There is a help article suggested by Salesforce: https://help.salesforce.com/articleView?id=000339353&type=1&mode=1. However, there are some good ways to use this. PK Chunking – the one we used to use Bulk API For example, let’s say you enable PK chunking for the following query on an Account table with 10,000,000 records. SELECT Name FROM Account …
Maximum SOQL offset allowed is 2000 for Pagination Read More »
“This session is not valid for use with the REST API” while making query
DESCRIPTION This error you must be getting while making query developer console OR query using api. It’s because of fact that you don’t have permission to access org using API. SOLUTION If Issue is taking place in developer console Quick way to fix it to give permission “Use any API client” using profile or permission …
“This session is not valid for use with the REST API” while making query Read More »
Salesforce Winter ’21 Release Notes (Developer Perspective)
Update Resources with the PATCH HTTP Method in Apex Callouts To make partial or full updates to a resource in an HTTP web service, specify the PATCH method in the HttpRequest class. Previously, only the PUT method was supported for full updates. https://releasenotes.docs.salesforce.com/en-us/winter21/release-notes/rn_apex_callouts_patch.htm?edition=&impact= Use the Safe Navigation Operator to Avoid Null Pointer Exceptions Use the safe navigation …
Salesforce Winter ’21 Release Notes (Developer Perspective) Read More »
Things to Remember while Deployment
Goal is to list out all deployment chaos (issue, reasons and resolution) till now we have faced and follow it religiously. Deployment Experience Profile Deployment Causes to deploy system permissions from Sandbox – may cause issue in production. Verify system permissions, if matches then deploy. We faced issues in CK, we deployed profile – profile …