Blogs

  • Generating A Record With Lightning Web Component (LWC)

    Creating a Salesforce Record with Lightning Web Components and Apex Class Utilize the lightning-input element to capture user input for Account Name, Phone, Rating, and Industry. Incorporate a lightning-button to invoke the JavaScript controller method responsible for creating the record. Implement an onchange handler for each lightning-input tag to retrieve the modified values in the…

    Read more…

  • 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…

    Read more…

  • 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…

    Read more…