Mytutorialrack

Blogs

Home - Blog - Page 28

Test Coverage in Salesforce
Uncategorized

Test Coverage and Deploying in Salesforce

In this blogpost, we will learn about Test Coverage in Salesforce. Arguably the most important skill for Salesforce developers is to know how to migrate their customizations to a production environment.Although you can make changes to code directly in a Developer instance, in order to do so for a Production instance, you must first make

Read More »
Uncategorized

Object Classes in Salesforce

At the heart of OOP is the type of class which represents a single object . These classes store attributes as well as methods specific to that object. Object classes can be created as stand-alone classes,complete with constructors, or they can be nested within other classes—commonly referred to as wrapper classes —and used to “wrap”

Read More »
Uncategorized

Governor Limits In Apex

In this blog post we will learn about Governor limits. As Apex executes on the force.com platform, which is run on a shared tenancy architecture, Salesforce imposes certain limits as to the level of resources consumed within a single thread by applications built on the platform. These limits are collectively known as Governor Limits. These

Read More »
Collections in Apex
Uncategorized

Collections in Apex

Collections In this blog post we will learn about collections in Apex. There are three different types of collections in apex: List, Set and Map. Collections are composite data types which allow the developer to aggregate, or collect, multiple other types into a single variable.  List  A list (also called an array) is a variable

Read More »
Uncategorized

Primitive Data Types in Apex

Primitive Data Types in Apex In this blog post we will learn about the different primitive data types which are available in Apex. Primitive data types are basic pieces of a programming language that include built-in support. In most languages, these types cannot be modified and are used as basic building blocks to construct application

Read More »

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 »
apex programming
Uncategorized

Basics of Apex Programming

In this blog post, we will cover some basics related to apex programming. We will learn about datatypes, Variables and constants. What is Apex class? A class is a template or blueprint from which objects are created. An object is an instance of a class. Let’s talk in detail about this class. Think of a

Read More »
apex programming
Salesforce

What is Apex Programming?

In this blog-post series, we will learn about apex programming. Apex is official programming language for Salesforce Developers. It is strongly typed object-oriented programming language. The syntax of apex is very similar to Java programming language and for that reason it is also called as sister language of Java. Features of Apex: Apex is a

Read More »