How to Increase Salesforce Governor Limits

Salesforce is known as CRM with a lot of Limits. Because Salesforce Apex runs in a multitenant environment, the Apex runtime engine strictly enforces limits so that runaway Apex code or processes don’t monopolize shared resources. If some Apex code exceeds a limit, the associated governor issues a runtime exception that cannot be handled.

Continue reading How to Increase Salesforce Governor Limits

How to build Custom Flexible Rest Architecture in the Salesforce

The Classic Salesforce platform is designed to use the MVC pattern for developing applications and customizing existing functionality. The benefits of server rendering are obvious, but we often need more dynamic in the application. In this case, Rest Services will help us.

Continue reading How to build Custom Flexible Rest Architecture in the Salesforce

Error: Incorrect parameter type for function ‘ISPICKVAL()’. Expected Text Literal, received Text

You can face a strange issue if you create a formula field in Salesforce and try to use standard ISPICKVAL function with Custom Label because you don’t want to hardcode the values.

Continue reading Error: Incorrect parameter type for function ‘ISPICKVAL()’. Expected Text Literal, received Text

How to fix ‘Bad value for restricted picklist field’ error

Users or developers may receive the following error when they attempt
to create or update a record in Salesforce:

Error: Invalid Data. 
Review all error messages below to correct your data.
‘Bad value for restricted picklist field: PicklistValue’

This error occurs when the picklist field referenced in the error message
meets each of the following conditions:

Continue reading How to fix ‘Bad value for restricted picklist field’ error

Free Salesforce Certification

We all know how important it is to improve your skills. If now you have more free time – it becomes more relevant.

Salesforce really knows how to train and offers us some free ways to grow. We gathered them together, it remains only to use what suits you!

Continue reading Free Salesforce Certification

How to merge Accounts in Salesforce

Data quality is one of the most important things you have to watch to get the most out of Salesforce. This helps your sales team to obtain accurate customer data in accordance with various privacy and privacy rules. Salesforce gives you tools for managing duplicates one at a time and across your org, and to track your progress in eliminating duplicates.

We will show how to merge Accounts in different interfaces and do not forget about a little Salesforce Hack at the end of the article.

Continue reading How to merge Accounts in Salesforce

Why create cold sales scripts?

According to an enormous amount of research, telephone calls are the most common channel used in sales relations management.

The use of sales scripts is one of the most heavily debated topics in the world of sales.
Many sales professionals rely on sales scripts.
They claim that having a high-quality script makes the sales process simpler and produces better results.


Let’s understand what attracts sales professionals in scripts right now?

Continue reading Why create cold sales scripts?

How to share a code between Aura and Lightning Web component

Now you can build Lightning components using two programming models: Lightning Web Components, and the original model, Aura Components.

Most of the projects consist of Aura Components but more and more developers trying to use LWC for new components. Developers faced with the issue to use common functions in Aura and Lightning Web Components.

The solution is pretty simple:

Continue reading How to share a code between Aura and Lightning Web component