Blogs
-
What Makes Lightning Web Components Advantageous
Lightning Web Components represents a fresh approach to constructing Lightning components, employing the latest advancements in web standards over the past five years. It seamlessly integrates with the original Aura programming model, ensuring compatibility and collaboration. Additionally, Lightning Web Components excels in performance by adhering to core Web Components standards and focusing on essential features…
-
How To Insert Over 10,000 Records Using Apex
Now this is very common use case and everybody will think of batch apex, which is obviously correct. But suppose you have below use case. When user insert an Account, you need to insert 15K related Contacts. Now this is tricky, why? Because for sure you will query Account in start method and build your…
-
File Upload Validation
Certainly, let’s consider the two use cases: Now, let’s delve into a specific scenario. Suppose we want to restrict users from uploading a file in a Contact record if the ‘Level__c’ is set to ‘Primary’. To comprehend the file handling in Salesforce: In Salesforce, the ContentDocumentLink is an object that signifies the link between a…