Deepika Khanna

Avatar of Deepika Khanna
SalesforcePlatformDeveloper1

Basics of Writing a Salesforce Test Class

In this blog post, I will cover some basic concepts while writing your Test class in Salesforce.I will be using some code snippets to illustrate : [sourcecode lang=”Java”]@isTest(seeAllData=false)private class Test_CountContactOfAccount {//Methodstatic testMethod void CountContactOfAccountUnitTest() {}}[/sourcecode] seeAllData: Using this annotation isTest(seeAllData=true) you will be able to access the records in your organization.If you are fetching records […]

Basics of Writing a Salesforce Test Class Read More »

10 Salesforce Extensions That Will Make You Salesforce Expert Featured Image

10 Salesforce Extensions That Will Make You Salesforce Expert

Introduction: Stop Wasting Time Clicking Through Setup Let’s be honest — navigating a Salesforce org without the right browser tools is like trying to cook a meal with no utensils. Everything is technically possible, but it takes twice as long and leaves you frustrated. If you’re a Salesforce beginner or intermediate professional trying to stand

10 Salesforce Extensions That Will Make You Salesforce Expert Read More »

Why Platform Developer 1 Certification is so important Featured Image

Why Platform Developer 1 Certification is so important?

Introduction: Is PDI Worth It? Absolutely — Here’s Why You’ve probably heard people in the Salesforce ecosystem talk about the Platform Developer I (PDI) certification like it’s some kind of golden ticket. And honestly? They’re not wrong. Whether you’re a fresh graduate exploring Salesforce for the first time or an Admin who’s been clicking around

Why Platform Developer 1 Certification is so important? Read More »

Exception Handling in Salesforce Featured Image

Exception Handling in Salesforce

Introduction: Why Exception Handling in Salesforce Is Non-Negotiable Exception handling in Salesforce is one of those foundational skills that separates code that merely works from code that works reliably. Whether you’re preparing for the Salesforce Platform Developer I certification, landing your first developer role, or building enterprise-grade Apex solutions, understanding how exceptions work — and

Exception Handling in Salesforce Read More »

Actionfunction Component with Example Featured Image

Actionfunction component with example

Introduction If you’ve been learning Salesforce development for any amount of time, you’ve probably run into a scenario where you want to call an Apex method from JavaScript — without refreshing the entire page. That’s exactly where the action function component with example becomes your best friend. The <apex:actionFunction> component is one of Salesforce’s most

Actionfunction component with example Read More »

Force.com IDE: Improve the performance of Force.com Eclipse IDE

Salesforce developers spend lot of time waiting for file Save operation to finish. This is a big problem for developers working on big Force.com projects which includes large number of classes, pages, objects and components.I recently found out a way to boost-up the save and refresh speed on Force.com Eclipse IDE. The secret to improve

Force.com IDE: Improve the performance of Force.com Eclipse IDE Read More »