Monthly Archives : October 2021

What is CRM (Customer Relationship Management) ?

On October 30, 2021, Posted by , In Interview Questions, With Comments Off on 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

On October 28, 2021, Posted by , In Salesforce Apex Tutorial, With Comments Off on 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

On October 25, 2021, Posted by , In Salesforce Apex Tutorial, With Comments Off on 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?

On October 23, 2021, Posted by , In Interview Questions, With Comments Off on 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

On October 22, 2021, Posted by , In Salesforce Apex Tutorial, With Comments Off on 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

On October 19, 2021, Posted by , In Salesforce Apex Tutorial, With Comments Off on 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…

What is MuleSoft & How to Get Started with MuleSoft?

On October 18, 2021, Posted by , In MuleSoft, With Comments Off on What is MuleSoft & How to Get Started with MuleSoft?

Introduction –  Mulesoft is an ESB which is also known as Enterprise Service Bus (ESB) which is acting as a middleware tool to integrate various applications.  MuleSoft is using the concept of API Led connectivity to connect different systems so that the connections and API can be managed easily.  Mule,…

Salesforce Apex Tutorial – Chapter 7: Apex Arrays

On October 8, 2021, Posted by , In Salesforce Apex Tutorial, With Comments Off on Salesforce Apex Tutorial – Chapter 7: Apex Arrays

Arrays in the apex are collections of similar elements, where the memory is allocated sequentially. Each element in the array is located by index and the index value starts with zero. An array in Apex is basically the same as the list in Apex. In Apex, there are two ways…

Salesforce Apex Tutorial – Chapter 6: Apex Strings

On October 6, 2021, Posted by , In Salesforce Apex Tutorial, With Comments Off on Salesforce Apex Tutorial – Chapter 6: Apex Strings

In Apex, a string can contain any number of characters with no character limit, as in any other programming language. You can read the previous article Salesforce Apex Tutorial – Chapter 5: Apex Variables and next one Salesforce Apex Tutorial – Chapter 7: Apex Arrays. For example,  String name =…

Salesforce Apex Tutorial – Chapter 5: Apex Variables

On October 4, 2021, Posted by , In Salesforce Apex Tutorial, With Comments Off on Salesforce Apex Tutorial – Chapter 5: Apex Variables

A variable is a named value holder in memory. An apex variable is defined as a combination of the data type, identifier, and an optional Initializer. The identifier is the name chosen for a variable. The identifier should start with an alphabet or an underscore and it can be of…