Category: Cloud
Query Plan in Salesforce
The Query Plan tool within the Developer Console can help speed up SOQL queries done over large volumes. Use the Query Plan tool to optimize and speed up queries done over large volumes. Enable and Use the Query Plan Tool
Install Openssl with source code
To install Openssl, we have to perform all steps with the root user. Please check the steps below: sudo su (Do all operation with root user) Change the directory to your desire location cd /var/www/html/ Make two directories mkdir Release
Security token in Salesforce
How to generate an access token? Step 1: From Setup, enter Apps in the Quick Find box, then select App Manager. Step 2: Locate the OAuth connected app in the apps list, click and select View. Step 3: In the
How to call Salesforce API from Postman
To verify the output of a web service in salesforce we need to connect it with the postman. To connect salesforce with postman we need to follow these steps. Get access token:- To get access token. Click on the authorization
Lightning Web Component (Salesforce)
LWC is a new programming model leveraging recent web standards. This framework is quite powerful and allows developers to do customization with the best approach. Web Standards and Specialized services like Base Lightning Components, Lightning Data Service, and User Interface
Salesforce Einstein
Salesforce Einstein is the first encompassing AI for CRM. Einstein is an integrated set of AI technologies that make Salesforce Customer 360 degrees smarter and bring AI to trailblazers everywhere. Salesforce is one of the earliest adopters of AI capabilities
Salesforce Dashboard Customization
Dashboards in Salesforce are the graphical representation and easily understandable visual presentation of reports data in salesforce. Salesforce dashboards have some visual representation components like graphs, visualforce pages, charts, tables, gauges, and metrics. Salesforce dashboard components are used to represent
How to get Salesforce object records with only required fields in Apex
Problem: If you want to get records with dynamic fields (all fields or only required fields) selection of an object in Salesforce. Solution: List normalFields = new List(); List requiredFields = new List(); Schema.DescribeSObjectResult objectDetails = ObjectName.sObjectType.getDescribe(); Map fieldsMap =
Data Model, Objects, and Relationships in Salesforce
A data model is defined as a method to represent tables in the database in an understandable human language. Tables in the database are used to understand the relationships among different objects. From a database point of view, a table
