How to Fix Salesforce Bulk API Error – ClientInputError : LineEnding is invalid on user data. Current LineEnding setting is LF

When using Salesforce Bulk API using the sf CLI or through REST, you might get this error when uploading a csv file. This is usually caused by line-ending format on the raw csv file. On my Mac machine this should be LF and CRLF on Windows. To fix this you can use a text editor… Read More How to Fix Salesforce Bulk API Error – ClientInputError : LineEnding is invalid on user data. Current LineEnding setting is LF

How to Integrate Salesforce with a Next.js App Using jsforce

In this post, we’re going to walk through the process of integrating Salesforce with a Next.js application using the jsforce library. This is especially useful if you need to access Salesforce data from a Next.js app, whether for displaying information or for backend operations. What is jsforce? jsforce (formerly known as Node-Salesforce) is a powerful… Read More How to Integrate Salesforce with a Next.js App Using jsforce

How Lightning Web Security Works in Salesforce

In this post, I’ll be talking about how Lightning Web Security can make developers’ lives easier on the Salesforce Platform when building Lightning Web Components and how it replaces the Lightning Locker Service. This 2023 one of my goals is to get the Salesforce Javascript Developer certification. With my shift to a solution architect role… Read More How Lightning Web Security Works in Salesforce

Some Gotchas When Installing Vlocity Industries in your Salesforce Org

So our client has a fresh vanilla Salesforce org that I am setting up by installing Vlocity Industries – Energy and Utilities Cloud and learned a few gotchas that I wanted to share. First off, know if your org uses OmniStudio sObjects(standard) or OmniStudio for Vlocity SObjects(custom objects). You can do the following: Under Setup… Read More Some Gotchas When Installing Vlocity Industries in your Salesforce Org

How Do Lifecycle Hooks Work in Lightning Web Components

How do lifecycle hooks work in lightning web components? Lightning web components have a lifecycle managed by the framework. When lightning web component instance is created it goes through a lifecycle phase. During specific phases, a lifecycle hook fires triggering a particular callback method. Each callback method has it’s specific use and has things you… Read More How Do Lifecycle Hooks Work in Lightning Web Components