Mytutorialrack

Blogs

Home - Blog - Page 29

Uncategorized

Testing framework in Salesforce

This topic describes the testing framework in Salesforce and its main features that can be utilized to ensure successful long-term development and success of the application. When an application in Salesforce need to be deployed to customers, testing plays a key role and the testing framework makes it possible to validate that it works as

Read More »
Salesforce

What kind of web content can be added in visualforce?

In this blog post we will see what kind of web content can be added to visualforce page. We will also learn about adding static resources in salesforce and how to use those static resources inside of visualforce page. We will upload css file and javascript file as static resources and refer them from visualforce

Read More »
Salesforce Save Order of Execution
Salesforce

Salesforce order of execution: Save Order of Execution in Salesforce

In this blog post, we will cover save order of execution in salesforce. We will see the order of events that happen when we save or update a record in salesforce. We will also learn about Apex transactions and the relationship between Apex transaction and order of execution. Save order of Execution The save order

Read More »
Governor Limits
Uncategorized

Governor Limits in Salesforce

Governor Limits in Salesforce Salesforce enforces Governor limits to ensure that resources are shared in multi-tenant environment. Developers need to be aware of the limits and understand how these governor limits will impact coding practices. What are governor limits ? Governor limits ensure that one customer does not monopolize shared resources in a multi-tenancy environment.

Read More »
Salesforce

What are Salesforce platform Events?

Salesforce platform events are used to deliver secure and scalable custom notifications from Salesforce to external systems. Platform events are also used to communicate within Salesforce and also between lightning applications.Events are sent independent of the receivers listening to those events. I have explained the events using the diagram below: As you can see above,

Read More »
Strategies to follow while deployment:
Uncategorized

Strategies to follow while deployment:

Whenever you deploy changes to production, you need to be very careful because end user will get effected if something goes wrong. Whenever you are deploying changes to production, you need to follow some strategies. Preparation for Deployment and Roll Back plan: 1) Before you deploy your changes to production, you should first deploy the

Read More »

What is Salesforce DX and what are the most popular commands?

Salesforce DX offers you an open and standard developer experience, which helps you build application using the tools like Git, Eclipse, Selenium and more. Salesforce DX consists of an updated Eclipse Integrated Development environment (IDE) which expands the value of the toolset to salesforce developers. In this blog post, I have put together a list

Read More »
How to retrieve all fields in SOQL query_
Salesforce

How to Select all fields in SOQL?

In this blog post, we will learn about a special trick to retrieve all the fields through SOQL query. If you are coming from a Java background or .NET background you must be familiar with this query: “Select * from Table_name” : You can use this query in Java,.NET or PHP to retrieve all the data

Read More »

Salesforce Lightning Framework related interview questions

In this blog, I have covered some important interview questions related to Lightning framework. These questions will be very helpful if you are a Salesforce developer or a Salesforce admin. Question 1: What is AURA framework? Answer: Aura framework is an open-source framework created by Salesforce to build dynamic web applications for mobile and desktop.

Read More »

Salesforce Custom Buttons: 4 Clever URL hacks

In this blog post we will see how to launch webpages with custom data from your current record using custom buttons. You can  not only launch internal salesforce pages but also webpages like google.This saves us lot of time and effort, instead of copying the data from the record to another webpage, we can auto-populate

Read More »