Salesforce SOQL
Video thumbnail for How to execute Salesforce SOQL in VS Code?
How to execute Salesforce SOQL in VS Code?

infallibletechie.com

SOQL Builder in VS Code can be usedH to execute Salesforce SOQLs.

Video thumbnail for Find users who logged in using Auth Providers in Salesforce
Find users who logged in using Auth Providers in Salesforce

infallibletechie.com

We can query LoginHistory entity using AuthenticationServiceId to find the users who logged in using Social Logins. AuthenticationServiceId refers to Auth. Provider Id which is used in the Social Login. Blog Post: https://www.infallibletechie.com/2022/

Video thumbnail for Find which agents missed the Salesforce Voice Calls
Find which agents missed the Salesforce Voice Calls

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/10/how-to-find-which-agents-missed-the-salesforce-voice-calls.html

Video thumbnail for Query CombinedAttachment in Salesforce
Query CombinedAttachment in Salesforce

infallibletechie.com

We cannot query CombinedAttachment object/entity as Query() is not supported. So, we can use Sub-Query to fetch CombinedAttachment records. Blog Post: https://www.infallibletechie.com/2022/10/how-query-combinedattachment-in-salesforce.html

Video thumbnail for Monitor Salesforce Change Data Capture Events usage
Monitor Salesforce Change Data Capture Events usage

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/09/how-to-monitor-salesforce-change-data-capture-events-daily-or-24-hour-or-hourly-period-usage.html

Video thumbnail for Last Login Date Time in Salesforce
Last Login Date Time in Salesforce

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/08/lastlogindate-in-salesforce.html

Video thumbnail for No such column BusinessHours on entity Case Exception in Salesforce
No such column BusinessHours on entity Case Exception in Salesforce

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/09/no-such-column-businesshours-on-entity-case-exception-in-salesforce.html

Video thumbnail for Edit and Delete Actions missing on Milestones from Salesforce Entitlement Process
Edit and Delete Actions missing on Milestones from Salesforce Entitlement Process

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/11/edit-and-delete-actions-missing-on-milestones-from-salesforce-entitlement-process.html

Video thumbnail for Query Salesforce Picklist Field values using SOQL
Query Salesforce Picklist Field values using SOQL

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/10/how-to-query-salesforce-picklist-field-values-using-soql.html

Video thumbnail for Query Field Permissions for a Profile in Salesforce
Query Field Permissions for a Profile in Salesforce

infallibletechie.com

Use FieldPermissions Entity to Query Field Permissions for a Profile in Salesforce. Blog Post: https://www.infallibletechie.com/2018/09/how-to-query-field-permissions-for.html

Video thumbnail for Query Salesforce Custom Object using InvokeSalesforceRestApiFunction
Query Salesforce Custom Object using InvokeSalesforceRestApiFunction

infallibletechie.com

In InvokeSalesforceRestApiFunction Lambda, queryRecord method can be used to fetch or query custom object records in Salesforce. Blog Post: https://www.infallibletechie.com/2023/01/query-custom-object-using-invokesalesforcerestapifunction-for-salesforce-

Video thumbnail for Update AccountId on Salesforce User record
Update AccountId on Salesforce User record

infallibletechie.com

AccountId field on the User object is read only. It is derived from Contact's AccountId field. We cannot update AccountId on the User object. The Contact record's AccountId field should be updated so that it will also gets reflected on the User object. B

Video thumbnail for Track undelivered messages in Salesforce Digital Engagement Messaging
Track undelivered messages in Salesforce Digital Engagement Messaging

infallibletechie.com

In ConversationEntry entity, MessageStatusCode will be populated if the messages are undelivered. So, query the ConversationEntry entity with MessageStatusCode to track failed or undelivered Messages in Salesforce Messaging. Blog Post: https://www.infall

Video thumbnail for Query Salesforce Presence Configurations
Query Salesforce Presence Configurations

infallibletechie.com

Salesforce Presence Configurations are stored in PresenceUserConfig entity. Blog Post: https://www.infallibletechie.com/2023/07/how-to-query-salesforce-presence-configurations.html

Video thumbnail for SOQL to find whether Lead was assigned via Assignment Rule
SOQL to find whether Lead was assigned via Assignment Rule

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/11/salesforce-soql-to-find-whether-lead-was-assigned-via-assignment-rule.html

Video thumbnail for Salesforce Legacy API Versions Retirement
Salesforce Legacy API Versions Retirement

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2023/02/salesforce-legacy-api-versions-retirement.html

Video thumbnail for Permission Set License Assignments using Salesforce SOQL
Permission Set License Assignments using Salesforce SOQL

infallibletechie.com

Salesforce SOQL query can be used to find users who are assigned as part of Permission Set License Assignments. Blog Post: https://www.infallibletechie.com/2023/06/how-to-query-permission-set-license-assignments-using-salesforce-soql.html

Video thumbnail for Query Object Permissions for a Profile in Salesforce
Query Object Permissions for a Profile in Salesforce

infallibletechie.com

Object Permissions for a Profile in Salesforce are stored in the ObjectPermissions Entity. Blog Post: https://www.infallibletechie.com/2018/09/how-to-query-object-permissions-for.html

Video thumbnail for Query Salesforce Process Builder
Query Salesforce Process Builder

infallibletechie.com

Use Tooling API, we can query Process Builders in Salesforce. Blog Post: https://www.infallibletechie.com/2021/09/querysoql-process-builder-salesforce.html

Video thumbnail for Query Salesforce Presence Statuses
Query Salesforce Presence Statuses

infallibletechie.com

Salesforce Presence Statuses are stored in ServicePresenceStatus object/entity. So, we can query ServicePresenceStatus object/entity to get the Salesforce Presence Statuses. Blog Post: https://www.infallibletechie.com/2023/07/how-to-query-salesforce-pres

Video thumbnail for Find the Files that are downloaded by an user in Salesforce
Find the Files that are downloaded by an user in Salesforce

infallibletechie.com

Whenever Files or Documents are download, there will be an entry in ContentVersionHistory entity or object in Salesforce. So, we can query the ContentVersionHistory entity/object with Field value as contentVersionDownloaded to find the files or documents

Video thumbnail for Query setup objects in Salesforce Developer console
Query setup objects in Salesforce Developer console

infallibletechie.com

Salesforce Tooling API’s SOQL capabilities for many metadata types allow us to retrieve metadata using queries. Enable "Use Tooling API" to query setup objects in Developer console in Salesforce. Blog Post: https://www.infallibletechie.com/2014/10/how-t

Video thumbnail for Create and query Salesforce Custom Address Field
Create and query Salesforce Custom Address Field

infallibletechie.com

"Use custom address fields" in Salesforce Setup User Interface section should be enabled to create Custom Address Field. To query the Custom Address Field values, use __StateCode__s, __CountryCode__s, __Street__s, __PostalCode__s, __City__s, __Latitude__

Video thumbnail for Find if an user have a specific Salesforce Permission
Find if an user have a specific Salesforce Permission

infallibletechie.com

Salesforce Permissions assigned to an user are stored in Permission Sets and Profiles. Permission Set assigned to an user are stored in PermissionSetAssignment object/entity. So, by querying these two objects, we can figure out if an user have a specific

Video thumbnail for SOQL to find code coverage in Salesforce
SOQL to find code coverage in Salesforce

infallibletechie.com

Code coverage is stored in two Lightning Platform Tooling API objects: 1. ApexCodeCoverageAggregate: ApexCodeCoverageAggregate stores the sum of covered lines for a class after checking all test methods that test it. 2. ApexCodeCoverage: ApexCodeCove