Salesforce Development
min read

Salesforce Development: 5 Common Mistakes and How to Fix Them

Here are 5 common mistakes people make during salesforce development, so you can avoid them.
Hamir Nandaniya
Hamir Nandaniya
Updated on Nov 20/2023
Salesforce Development
min read
Salesforce Development: 5 Common Mistakes and How to Fix Them
Here are 5 common mistakes people make during salesforce development, so you can avoid them.
image
Hamir Nandaniya
Updated on Nov 20/2023
Table of contents
1. Reaching SOQL queries limit
2. Multiple Triggers on the same object
3. Not Bulkifying your code
4. Troublesome User Experience
5. Keeping Hardcoded programs

Salesforce development and customization requires a sound knowledge of Force.com. Visualforce is a framework that allows developers to build sophisticated, custom user interfaces that can be hosted natively on the Force.com platform. Apex is the native programming language of Force.com that lets you execute flow and transaction control statements. But unlike usual coding platform, Salesforce imposes limits due to its multi-tenant cloud structure. Below are 5 mistakes a Salesforce Development team should avoid while customizing on Force.com

1. Reaching SOQL queries limit

As a multi-tenant vendor, you can’t allow a customer on a CRM instance make millions of API calls per a minute. Because this can affect the performance for other customers on the same instance. Thus, Salesforce has kept governor limits which restrict the no. of API calls over a period, which prevents writing bad code and eating up of cloud processing space. One such governor limit is imposed on Salesforce Object Query Language (SOQL). The total number of SOQL queries issued are 100 in synchronous limit and 200 in the asynchronous limit. It is advisable to follow proper guidelines while using Apex code, such as avoiding queries inside FOR loops, using Apex collections, writing exhaustive test cases etc.

2. Multiple Triggers on the same object

Apex triggers enable you to perform custom actions before or after events to records in Salesforce, such as insertions, updates, or deletions. But for a particular scenario (such as ‘before insert’) it is advisable to write single trigger. Writing multiple triggers renders the system unable to recognize the order of execution. Moreover, each trigger that is invoked does not get its own governor limits. Instead, all code that is processed, including the additional triggers, share those available resources.

3. Not Bulkifying your code

Bulkifying your code refers to combining repetitive tasks in Salesforce Apex such that the code properly handles more than one record at a time. Neglecting bulk code leads to hitting governor limits. When a batch of records initiates Apex, a single instance of that Apex code is executed, but it needs to handle all of the records in that given batch. For example, a trigger could be invoked by a Force.com SOAP API call that inserted a batch of records. So if a batch of records invokes the same Apex code, all of those records need to be processed as a bulk, in order to write scalable code and avoid hitting governor limits.

4. Troublesome User Experience

Visualforce allows you to develop a rich UI with pop-ups and images, but can be troublesome for the user. Pages overloaded with data and functionality makes clicking or navigating to buttons difficult. Design in Visualforce should be around specific tasks with defined workflow and navigation between tasks. Also unbound data or a large number of components affect performance and risk hitting governor limits for view state, record limits, heap size and total page size.

5. Keeping Hardcoded programs

While Salesforce development works on improving the formula and keep the Apex code dynamic. Keeping hardcoded URLs can be disastrous if the environment gets changed. Thus, the concept of dynamic URLs is beneficial in the long run.

Hamir Nandaniya
About the author
Hamir Nandaniya

Hamir is the VP of Product at Maruti Techlabs. With his technical acumen and engineering expertise, he continues to overcome tough business challenges by building and scaling creative solutions.

Posts from this authorred-arrow
card1
Software Development Practices - 8 MIN READ
Moving Your Call Center to the Cloud: A Step-by-Step Guide
Lure your business demands with agile technology combined with responsive decision making.
blog-writer
Mitul Makadia
card1
Salesforce Development - 4 MIN READ
Improve your Business with CRM and Cloud Telephony Integration
Here's how you can manage your customer base in real-time using CRM and cloud integration.
blog-writer
Hamir Nandaniya
card1
Salesforce Development - 6 MIN READ
How Salesforce Implementation Can Drive Lean Startup Success
Here are 5 common mistakes people make during salesforce development, so you can avoid them.
blog-writer
Hamir Nandaniya
Services
  • Software Product Development
  • Artificial Intelligence
  • Data Engineering
  • DevOps
  • UI/UX
  • Product Strategy
Case Study
  • DelightfulHomes (Product Development)
  • Sage Data (Product Development)
  • PhotoStat (Computer Vision)
  • UKHealth (Chatbot)
  • A20 Motors (Data Analytics)
  • Acme Corporation (Product Development)
Technologies
  • React
  • Python
  • Nodejs
  • Staff Augmentation
  • IT Outsourcing
Company
  • About Us
  • WotNot
  • Careers
  • Blog
  • Contact Us
  • Privacy Policy
mtechlogo.svg
Our Offices

USA 
5900 Balcones Dr Suite 100 
Austin, TX 78731, USA

India
10th Floor, The Ridge, Near Iskcon Cross Road
Opp. Wide Angle Cinema
Ahmedabad, Gujarat - 380054 

clutch_review
goodfirms_review
Social
Social
Social
Social
©2024 Maruti TechLabs Pvt Ltd . All rights reserved.

  • Software Product Development
  • Artificial Intelligence
  • Data Engineering
  • DevOps
  • UI/UX
  • Product Strategy

  • DelightfulHomes (Product Development)
  • Sage Data (Product Development)
  • PhotoStat (Computer Vision)
  • UKHealth (Chatbot)
  • A20 Motors (Data Analytics)
  • Acme Corporation (Product Development)

  • React
  • Python
  • Nodejs
  • Staff Augmentation
  • IT Outsourcing

  • About Us
  • WotNot
  • Careers
  • Blog
  • Contact Us
  • Privacy Policy

USA 
5900 Balcones Dr Suite 100 
Austin, TX 78731, USA

India
10th Floor, The Ridge, Near Iskcon Cross Road
Opp. Wide Angle Cinema
Ahmedabad, Gujarat - 380054 

©2024 Maruti TechLabs Pvt Ltd . All rights reserved.