top of page
Apex Salesforce
What is Batch Processing In a Salesforce and Why do we Use it Explain with Examples
Salesforce is a powerful platform that allows businesses to manage their customer relationships, sales, and other important processes....
Abhilash Banpurkar
Feb 11, 20233 min read
4 views
0 comments


What is Future Method In Salesforce
In This Blog We Will Discussed Complete Information Salesforce Future Method Its Advantages Limitation Syntax , the "future" method is a...
Abhilash Banpurkar
Feb 9, 20233 min read
0 views
0 comments


How Much Coding is Required in Salesforce
The amount of coding needed in Salesforce depends on the complexity of the tasks you want to accomplish and the type of role you have in...
Abhilash Banpurkar
Feb 5, 20232 min read
1 view
0 comments
Restriction Rules In Salesforce
The restriction rules in Salesforce are used to enforce data validation and control access to data. Here are a few common examples of...
Abhilash Banpurkar
Jan 30, 20234 min read
2 views
0 comments


The Role of Automation in Salesforce Layoffs and the Future of Work.
The Impact of Layoffs on Salesforce Employees and the Industry
Abhilash Banpurkar
Jan 30, 20235 min read
3 views
0 comments


Important trigger scenario for practice and interview point.
Prevent deletion of active account records trigger PreveventDeletion on Account (before delete) { for(Account acc:trigger.old) {...
Abhilash Banpurkar
Jan 27, 20233 min read
2 views
0 comments


How to Find Factorial in Salesforce Apex Programming.
Here is an example of how to find the factorial of a number using a for loop in Apex: Programs: public class Factorial { public static...
Abhilash Banpurkar
Jan 22, 20231 min read
52 views
0 comments


Write a program in salesforce to count the number of digit in a integer using a loop.
Here is an example of a Salesforce Apex class that counts the number of digits in an integer using a loop: Program public class...
Abhilash Banpurkar
Jan 21, 20231 min read
4 views
0 comments
Write Salesforce Program to Check Whether an Alphabet is Vowel or Consonant.
Here is an example program in Salesforce Apex code that checks whether a given alphabet is a vowel or consonant: public class...
Abhilash Banpurkar
Jan 20, 20231 min read
2 views
0 comments
Write a Salesforce apex Program to Reverse a Sentence.
Here is an example of a Salesforce Apex program that takes a sentence as input and reverses the order of the words: public class...
Abhilash Banpurkar
Jan 20, 20231 min read
9 views
0 comments


Write a program in salesforce to calculate the sum of natural number.
Here is an example of a Salesforce Apex class that calculates the sum of natural numbers up to a given number: public class...
Abhilash Banpurkar
Jan 17, 20231 min read
1 view
0 comments


How to Create a time Based workflow action using a trigger.
To create a time-based workflow in Salesforce, you will need to follow these steps Click the "New Rule" button to create a new workflow...
Abhilash Banpurkar
Jan 3, 20231 min read
1 view
0 comments
Salesforce Certifications and Types of Certificates they offer
Salesforce also offers industry-specific certifications for professionals who work in specific sectors, such as financial services,...
Abhilash Banpurkar
Dec 21, 20222 min read
1 view
0 comments


How To Login to Salesforce.
1.Go to the Salesforce login page (login.salesforce.com) and click the "Sign Up" button. 2.Enter your email address and create a...
Abhilash Banpurkar
Dec 19, 20221 min read
0 views
0 comments
OBJECT ORIENTED PROGRAMMING(OOPS) IN SALESFORCE
What is this ? It is a concept or It is Collection of Principles or it is one kind of Approach or it is a paradigm, These principles or...
Abhilash Banpurkar
Nov 28, 20225 min read
0 views
0 comments


Write an apex program to find out the biggest number from the given two numbers.
Apex Program to Find out the biggest Number using if else condition integer firstNumber,secondNumber; firstNumber=1000;...
Abhilash Banpurkar
Nov 10, 20221 min read
26 views
0 comments


Write an apex program to calculate the simple interest
Program for Simple interest: integerprincipalAmount,tenure,rateofinterest, interestAmount; principalAmount=20000; tenure=5;...
Abhilash Banpurkar
Nov 10, 20221 min read
10 views
0 comments
Important SOQL Query For Interview
Write SOQL Query to Retrieve First 10 records of Account. Select id,name from Account limit 10 2.Write a SOQL Query to retrive 10 latest...
Abhilash Banpurkar
Oct 27, 20221 min read
1 view
0 comments
When Apex Trigger are not Executed.
Cascade Delete Operations. Cascade Update of Child records and reparenting as a result of Merge operation. Mass Address update,Mass email...
Abhilash Banpurkar
Oct 13, 20221 min read
4 views
0 comments
Important Trigger Solved Questions
Create Validation Rule on same Object. trigger oppValidate on Opportunity(before insert,before update) { for(Task tsk:trigger.new){...
Abhilash Banpurkar
Oct 13, 20222 min read
7 views
0 comments
bottom of page