Tag Archives: salesforce technical blogs

Salesforce Summer ’26: A Smarter Way to Filter Records in SOQL

Salesforce Summer ’26 introduced a really useful feature for developers using FORMULA() directly inside the SOQL WHERE clause. Earlier, whenever we needed to filter records based on calculated values, we usually had to: Now Salesforce allows us to perform calculations directly inside SOQL queries, making queries cleaner and reducing unnecessary Apex code. Earlier Approach Suppose… Read More »

Create Button for List View

Salesforce provides some built in buttons while showing the list of records. Similarly we can add additional buttons for our custom functionality. We had a requirement wherein we needed to validate the records in the list with external web services. For this we created a custom button in the list view so that when the… Read More »

Changing user email without asking for confirmation from the user

Whenever the administrator of a salesforce organization changes the email address of any user, the user receives a notification in the previous email address informing them of the change. In addition to this, an email is sent to the new address asking for confirmation. It is only after the user accepts the change by clicking… Read More »