Salesforce

Architecting for Scale: Governor Limits, Performance & Best Practices in Salesforce – Part 1

SEO Meta Description: Architecting for Scale: Governor Limits, Performance & Best Practices in Salesforce – Discover expert strategies to overcome limitations, improve performance, and build enterprise-ready Salesforce solutions. Introduction to Salesforce Scalability Challenges Salesforce is one of the most powerful and flexible platforms for enterprise applications today. As organizations grow, so do the complexities of […]

Salesforce

Salesforce Apex System.TypeException – Cannot have more than 10 chunks in single operation. Please rearrange the data to reduce chunking.

Solution: Please rearrange the data to reduce chunking. When I am trying to insert parent and child in same transaction while preparing the list of records to be inserted in a loop, I am getting this error as System.TypeException “Cannot have more than 10 chunks in a single operation. Please rearrange the data to reduce […]

Salesforce

Salesforce Quick bytes / Cheat Sheet

When we had issue with one of the users complaining about his access, we can find easily whether user has access or not with below SOQL SELECT RecordId,HasReadAccess,HasEditAccess FROM UserRecordAccess WHERE UserId=’00541000005yQ1V’ AND RecordId IN (‘5001L00001J9OC4QAN’) Salesforce NOOVERRIDE=1Use  /e?nooverride=1 for classicUse /edit?nooverride=1 for lightning edit Use /view?nooverride=1 for lightning record view

JSON RESP API Salesforce

Salesforce Apex/Standard REST API Response Suppresses Null Values for where not required

Removing null values in REST API response / Beautify Response / Suppresses null values / JSON Serialize There is an out of box method available to remove all the null values from the JSON response it suppresses null values when serializing Apex objects into JSON content. Syntax:public static String serialize(Object objectToSerialize, Boolean suppressApexObjectNulls) Parameters objectToSerializeType: ObjectThe Apex object to serialize.suppressApexObjectNullsType: BooleanIf true, remove null values before […]