Tag: Salesforce

  • Why do we still need Visualforce and Apex?

    Why do we still need Visualforce and Apex?

    Where possible we should really be trying to use Lightning Web Components over Visualforce. The main reason we should prioritize Lightning Web Components over Visualforce is because of a lot of the out-of-the-box benefits: more modern, more responsive, and frankly, Visualforce will at some point be deprecated. Visualforce is still useful though, here are some […]

  • How to Avoid Governor Limits in Salesforce Apex

    How to Avoid Governor Limits in Salesforce Apex

    Most governor limit errors are a result of poorly understanding how Salesforce works, so they can be prevented by designing a better architecture and by taking advantage of the platform. For example, too many SOQL queries can be avoided by writing bulk-friendly code or using caching.

  • Analyzing Salesforce Field Usage

    Analyzing Salesforce Field Usage

    Over time, Salesforce orgs get more and more complicated especially when a consultant, admin or developer leaves the organization with their knowledge of the system.

  • How to Process Thousands Of Records on Salesforce

    How to Process Thousands Of Records on Salesforce

    On Salesforce, if you want to process thousands of records the only way to truly achieve it is through asynchronous apex. In this blog post, we cover the various ways of doing Asynchronous Apex.

  • Salesforce Apex Bulkification In 3 Easy Steps

    Salesforce Apex Bulkification In 3 Easy Steps

    As you may recall, in Salesforce, there are some fairly stringent governor limits that can cause things to unexpectedly fail. In this blog post, you will learn three easy steps to bulkify any method in Apex.

  • Salesforce Integration – Planning & Documentation

    Salesforce Integration – Planning & Documentation

    The first step for a successful integration is understanding the goals, planning and documenting the current processes. The most important thing is to understand the stakeholders and what they need to do with the data.

  • Common Reasons Salesforce Integrations Fail

    Common Reasons Salesforce Integrations Fail

    Moving data between systems consistently through an integration can be difficult especially given all of the limits that Salesforce throws at us! The purpose of this blog post is talk about all of the common reasons that a Salesforce integration could fail.

  • Reasons To Integrate Salesforce

    Reasons To Integrate Salesforce

    When we integrate something we are connecting two applications or systems together so they can talk to each other and share data. There’s a lot of business benefits to integrating Salesforce with other systems whether it be your enterprise resource planning system (ERP), your accounting software (Quickbooks, Simply Accounting, etc), or even your case management system.

  • Integrating Salesforce With Other Apps – A Series!

    Integrating Salesforce With Other Apps – A Series!

    Salesforce has really transformed a lot of companies I’ve been involved with because it’s made the sales team way more effective and allowed all people that need access to know what’s going on. Integrating Salesforce with other apps has the potential to dramatically improve efficiency and productivity in businesses.

  • Decluttering Your Salesforce Org

    Decluttering Your Salesforce Org

    Salesforce orgs tend to become cluttered with technical debt and functionality that is no longer being used. The longer the technical debt and unused functionality is allowed to exist the more expensive it becomes because of confusion, complexity, and potential project delays. In this blog post, we have a look at how to identify technical debt and how to begin removing it.

  • Using jQuery in Salesforce Lightning

    Using jQuery in Salesforce Lightning

    Up until recently, if you were building websites you pretty much always used jQuery. jQuery really simplified working with the browser document object model (DOM) and doing really custom animations. In this blog post, we go through how to jQuery with the Lightning Locker Service turned on.

  • Everything You Need to Know About Salesforce Relationship Types

    Everything You Need to Know About Salesforce Relationship Types

    When building a database it’s so important to build the right relationships between database tables. What this means is that when we’re creating relationships between objects is that we’re deciding how they will be associated with one another. Salesforce has a very similar concept, which shouldn’t really be a surprise considering there’s a database powering the entire thing!

  • Get Record Id in Lightning Web Component

    Get Record Id in Lightning Web Component

    Once you know how to do it, getting the current Record Id in a lightning component or lightning aura component is pretty easy. We simply need to implement the force:hasRecordId interface in the lightning component.

  • Custom Submit Button for a lightning:recordEditForm

    Custom Submit Button for a lightning:recordEditForm

    The lightning:recordEditForm allows us to create a custom looking form that can interact with Salesforce records, or create new Salesforce records. In this blog post, we’ll go over how to create a custom submit button for a lightning:recordEditForm

  • Intro to Lightning Data Service

    Intro to Lightning Data Service

    Lightning Data Service is a game changer for Salesforce Developers and Lightning Components (Aura) because it reduces the amount of work required by developers.

  • 5 Ways to Increase CRM Usage

    5 Ways to Increase CRM Usage

    Implementing CRMS like Salesforce into an existing company can be really challenging if users aren’t interested in using it or resistant to change. I recall the first time I integrated Salesforce into an organization, we had a very difficult time getting the sales staff to actually use it. Eventually we found a way to get […]

  • Using Promises in Salesforce Lightning

    Using Promises in Salesforce Lightning

    It’s no secret that Salesforce Lightning is changing the way we develop for Salesforce. At Dreamforce 2014, Salesforce introduced Salesforce Lightning and it is proving to change a lot of things we do on the platform and I’m sure it will make things a lot better for users in the long term. If you aren’t […]

  • A beginners Guide to Understanding CRM

    A beginners Guide to Understanding CRM

    In the days of early computing, it was rare that companies would have a way of communicating with their customers that would scale as the company grew. Everything went into different “data silos” that wasn’t necessarily accessible to the right person at the right moment. When I started my career, I worked on phone systems […]

  • Book Review: Advanced Apex Programming

    Book Review: Advanced Apex Programming

    It’s no secret to those that know me that I read a lot and spend a lot of time gathering knowledge and honing my craft. I believe I own and have read most of the books on apex and salesforce that are available right now. Advanced Apex Programming by Dan Appleman is definitely the most […]

  • How I stay informed of Salesforce Changes

    How I stay informed of Salesforce Changes

    Salesforce does three major releases per year which often include hundreds of changes whether they be bug fixes or new features. Staying on top of what is changing is very difficult as the company continues to expand and is consistently enhancing the platform. As a professional it’s part of our jobs to stay current on […]