How To Set Up CICD On Bitbucket Pipelines With Salesforce DX And Delta Deployment

Learn how to setup set up CICD delta deployment with Salesforce DX. Tips and tricks for authorisation , setting up node and the basic git commands. I’m revamping our CICD process with Salesforce DX and Bitbucket Pipeline with the following initial setup which will only allow delta deployments. Authentication method – authorize an org and… Read More How To Set Up CICD On Bitbucket Pipelines With Salesforce DX And Delta Deployment

How To Use Javascript Promises with Lightning Components

Javascript Promises has been around for a while but only got the chance to use it on some of the aura component pieces I started working on. In analogy you make a promise and either you fulfil or break your promise. In Javascript Promises context these translate to “resolve” meaning promise is fulfilled or “reject”… Read More How To Use Javascript Promises with Lightning Components

How To Fix [Cannot read property ‘setParams’ of undefined] for Application Event in Aura Components

Component.cmp Controller.js Are you receiving cannot read property ‘setParams’ of undefined after assigning an event? This indicates that $A.get(“e.c:CRMAppEvent”) cannot find the event and any reference to setParams method or any properties of the event would eventually be undefined. To fix this you need to set your application event access to global CRMAppEvent.evt