Salesforce Apex Tutorial Chapter 14: Apex Objects
An object is an instance of a class. The object can be a class object in Salesforce, or it can also be an object of sObject. Object creation In Apex: An object of the class can be created in the same way as created in Java or another object-oriented programming…
Hello World API using MuleSoft AnyPoint Platform
Dear Readers, In the previous post, you have learned what MuleSoft is and why it is useful for the enterprise business and how it is helping us to integrate the various systems and helping the business to have everything in one place to help their employees to boost productivity and…
Salesforce Apex Tutorial Chapter 12: Apex Classes
Example: Let’s take a look at Apex Access Specifiers: Following are the apex modifiers supported by the apex. Private: This access specifier gives access to a class, method, variable to be used locally or within the section of code it is defined. All classes, methods, and variables that do not…
What is CRM (Customer Relationship Management) ?
CRM stands for CUSTOMER RELATIONSHIP MANAGEMENT.CRM is a technology for managing all the company’s relationships and interactions with customers and potential customers and stores customer contact information.It actively tracks and manages the customer information.It connects the entire team with the simple goal to improve business relationships. It also delivers the…
Salesforce Apex Tutorial Chapter 11: Apex Collections
A collection is a type of variable in apex that can store multiple items.Collections In Apex can be List, Set, or Map. Lists A list is an ordered collection of elements characterized by their indexes. A list element can be of any type, including primitive types, collections, sObjects, user-defined types,…
Salesforce Apex Tutorial – Chapter 10: Loops in Apex
A loop is a block of code that is repeated until a specified condition is met. Salesforce apex supports both traditional and advanced loop types. Using a loop statement, we can execute a statement or group of statements multiple times. Below is the flow diagram of a loop followed by…
What is the difference between Profile Vs Permission Set?
Profile is mandatory to the users in the Salesforce. Permission set is one thing that is discretionary for all the user’s in the Salesforce. One person can be connected to only one profile but one user in Salesforce can be associated with many permission sets. Profile is something that helps…
Salesforce Apex Tutorial – Chapter 9: Apex Decision Making
A decision-making structure contains one or more conditions that are to be evaluated by the program, along with a statement or statements that should be executed if the condition is true, and maybe other statements if it is false. Here, we will discuss the structure of decision-making and conditional statements…
Salesforce Apex Tutorial – Chapter 8: Apex Constants
Read the previous one Salesforce Apex Tutorial – Chapter 7: Apex Arrays and next one. Apex constants are variables that hold their values after being initialized once. A constant value can not be changed once initialized or assigned a value. The final keyword is used to define constants. The final…