- Salesforce Blogs -

An Introduction to Apex Class in Salesforce for Beginners

  • Feb 29, 2024
  • 346.8k
  • 2 min read
  • Comment
An Introduction to Apex Class in Salesforce for Beginners

Introduction to Apex class:-

Salesforce has already provided prebuilt application such as workflow, approval process, process builder etc for the CRM functionality. It may be possible that the Organization has much more complex business requirements which cannot achieve by current prebuilt applications. When it happensthe Force.com platforms has following ways for developer to build custom functionality. We Can use Apex for Web Services, Email Services, Provide solution for  Complex business requirements which cannot  fulfilled by workflow rule. Add custom logic to another operation such as saving record.

How to Write Basics Access modifier:-

Read: How to Export Backup Data from Salesforce?
  1. Private:- method and variable only we can access in the defining apex class
  2. Public:- method and variable of an apex class we can access from another apex class as well.
  3. Protected:- method and variable can be access by any inner classes in the same Apex class, and those classes that extend the defining Apex class. You can only use this access modifier for instance methods and member variables.
  4. Global :- method and variable can be access from any apex class in the organization or from any other organization.

free salesforce demo Static and Instant Method:-

Apex code:-

Read: Kickstart Your Salesforce Career With Best Salesforce Entry Level Jobs
  1. How to get list of records using apex class

Ans:-


Public class listofAccountRecordClass
{
Public list<account>getAccountList(){

List<account>accountList = [select id,name,phone,industry,rating from account];
If(!accountList.isEmpty()){
	returnaccountList;
}
System.debug(‘accountList’+accountList);
return new list<Account>();
}
}

An Introduction to Apex Class in Salesforce for Beginners An Introduction to Apex Class in Salesforce for Beginners GO TO ANONYMOUS WINDOW. An Introduction to Apex Class in Salesforce for Beginners Call the class. An Introduction to Apex Class in Salesforce for Beginners An Introduction to Apex Class in Salesforce for Beginners

Read: What Is The Best Way To Grow Your Salary In Salesforce?
JanBask Training

Written by

JanBask Training

The JanBask Training Team includes certified professionals and expert writers dedicated to helping learners navigate their career journeys in QA, Cybersecurity, Salesforce, and more. Each article is carefully researched and reviewed to ensure quality and relevance.

View all blogs

Leave a comment

Keep reading

Related Salesforce Blogs

Explore more Salesforce blogs

More Salesforce articles to go deeper on this topic — tutorials, comparisons, and career guides from the same category.

Explore Career Programs Built for the AI Era

Choose from live, mentor-led programs designed around today’s fastest-growing technology skills and tomorrow’s AI-powered job roles.

Explore More

Salesforce Career Programs

Live, mentor-led Salesforce programs designed around the same skills this blog covers.

Explore Salesforce courses

Explore more topics

Browse Blog Categories

Jump to another subject — AI, Cloud, Salesforce, Data, Testing, and more — and keep learning by topic.

Interviews

Browse Categories