Monitor Google Form Responses In Salesforce
As a manager in your organization, you need to monitor the Google Form responses in Salesforce that capture the contact information and other basic preferences when visiting customers fill out…
As a manager in your organization, you need to monitor the Google Form responses in Salesforce that capture the contact information and other basic preferences when visiting customers fill out…
In this post, I have outlined how to retrieve Consumer key and secret of Connected App you have created in Salesforce. What Is a Connected App? A connected app is…
Picklist fields in Salesforce contain a list of one or more items from which a user chooses a single item. They display as drop-down lists in the Salesforce user interface.…
In this post, the Salesforce Bulk API 2.0 query will b used to delete some records. The Bulk query jobs allow asynchronous processing of SOQL queries because they are designed…
There were some errors I encountered while working on a trailhead module - App Development with Salesforce DX which I know may help others that may face the same thing.…
To create Account-Asset record-specific action in Lightning Component, you must add the force:hasRecordId interface to the Aura component to enable the component to be assigned the ID of the current…
Custom Controller Testing Visualforce custom controller is required because custom controllers like all Apex codes, should be covered by unit tests. A custom controller is an Apex class that implements all of the logic…
Aggregate functions in Salesforce Object Query Language (SOQL)), allow you to roll up and summarize your data in a query. These functions include AVG(), COUNT(), COUNT(fieldName), COUNT_DISTINCT(), MIN(), MAX(), and SUM(). It is possible…