Nitish Singhal

Author's posts

Step by Step Guide for using Salesforce Command Line Interface Data Loader

Check JRE Installation and Path

In this article, I will cover a step by step guide for using Salesforce Command Line Interface Data Loader: So first of all what is Command Line Interface Data Loader, and why should we use it from Command Line when there is already a visual user interface provided? Well, the answer is: You can automate the …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/step-by-step-guide-for-using-salesforce-command-line-interface-data-loader/

Salesforce Web to lead form with reCAPTCHA

Register for ReCaptcha API Key with Google.

Salesforce Web to lead form with reCAPTCHA Salesforce has already provided a cool out of the box feature where you can generate HTML for the web to lead form, which you can simply put on your website. It is very simple to generate the customized form with fields of your choice to generate leads for …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/salesforce-web-to-lead-form-with-recaptcha/

OpportunityAccessLevel field not writable in Apex

Opportunity Team Member Manually

Recently, I was working on an assignment, where I had to create Opportunity Team Member records in a trigger on some user action. But when I started to write the code and tried saving it, I got the error “Field is not writeable: OpportunityTeamMember.OpportunityAccessLevel“. Uuuhhh.. I got stuck! According to the documentation this field is writable, …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/opportunityaccesslevel-field-not-writable-in-apex/

Pagination using StandardSetController with wrapper class

PaginationImage

Pagination using StandardSetController with wrapper class without losing data during pagination Click here for Demo – Pagination with wrapper Very often, we need pagination in our visualforce page, and we use wrapper class to show the records with checkboxes in pageBlockTable. We use the standardSetController for pagination, display checkboxes for each record BUT while paginating, the …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/pagination-using-standardsetcontroller-with-wrapper-class/

Only Aggregate Expressions Use Field Aliasing – SOQL Error

Only Aggregate Expressions Use Field Aliasing – SOQL Error Out of many other errors we encounter, this is one with the SOQL. Many times, when writing SOQL, we face the error – “Only Aggregate Expressions Use Field Aliasing” and we are stuck that what’s happening, everything seems all right to me. You must be missing …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/only-aggregate-expressions-use-field-aliasing-soql-error/

TestSetUp method in apex test classes

TestSetUp method in apex test classes @testsetup annotation in test class method Test classes are an important part of overall SDLC in Salesforce. We as a developer have to write the test classes very often, and we need to create the test data as well, to have our test class executed successfully. We’ll cover a new …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/testsetup-method-in-apex-test-classes/

Use static resource in Visualforce

Static resource archive structure

Use static resource in Visualforce – Salesforce Force.com platform provides us a facility to upload, manage and use the content that is static (not changing) for your organization, and it can be stored under “Static Resources“. It can be a Javascript file, CSS file, an image or even a zip file containing all the files …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/use-static-resource-in-visualforce/

apex:pageMessage and apex:pageMessages – Salesforce

pageMessages

apex:pageMessage and apex:pageMessages – Salesforce Most of the times we are confused between these two visualforce components i.e. apex:pageMessage and apex:pageMessages. A small different of ‘s’. Let’s see the difference between apex:pageMessage and apex:pageMessages – Salesforce. We are confused that which one should we use, and in which case. There is a small difference between these two. …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/apexpagemessage-and-apexpagemessages-salesforce/

Relationship Query in Apex – Salesforce

How to create relationship name

Relationship Query in Apex – Salesforce Relationship Query in Apex – Salesforce soql relationship query Most of the times, we have relationships between the objects(master-detail OR lookup) and often we need to fetch the list of all child records related to parent record in SOQL. This can be achieved using relationship query in Salesforce. We …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/relationship-query-apex-salesforce/

Transient Keyword – View State – Visualforce – Salesforce

View State In Salesforce

Transient Keyword – View State – Visualforce – Salesforce View State in salesforce What is view state in salesforce? ViewState holds state of the visualforce page that holds state that includes the fields, components and controller state. Viewstate data in encrypted and cannot be viewed tools like firebug. There is a limit of 135KB of …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/transient-keyword-view-state-visualforce/