Mytutorialrack

Blogs

Home - Archives for 2019 - Archives for January

What is Batch Apex?

In this blog post, we will learn about Batch Apex.We use Batch Apex to build complex,long-running processes which operate on thousands of records. Batch apex divides record set into manageable batches to avoid hitting the governor limits.As you already know, salesforce has governor limits on data. But when you have to retrieve thousands of records

Read More »
Salesforce

Different types of access modifiers available in Apex

In this blog post,we will take a look at different types of access modifiers which are available in Apex programming. Apex has 4 different types of access modifiers.  Public  Private  Protected  Global Let’s discuss them one by one. 1) Global: The method or variable with global access modifier can be used by any apex code

Read More »