Blogs
-
Enhanced Salesforce Lightning Custom Lookup Component
Synopsis Relationship of Lookup in Salesforce Establishes a connection between two records to enable their mutual association. The parent record gains the ability to exhibit a related list, showcasing all linked records. These lookup relationship fields can be established to connect users, standard objects, or custom objects. If the record referenced by a lookup field…
-
Using Batch Apex as described in the Salesforce Apex Developer Guide.
Cluster Apex is employed for the execution of extensive operations, involving a substantial volume of records (think in terms of thousands or even millions!). It serves as a solution for processing tasks that would otherwise exceed the conventional processing limits. Through Batch Apex, you can process records in clusters in a non-concurrent manner (hence the…
-
Discovering Apex Classes that are not in use using the Tooling API and MetadataComponentDependency.
Can I use the Tooling API and SOQL to identify Apex Classes (or fields or any other metadata) within the org that are not being utilized or referenced? Upon executing I anticipated discovering null values for independent classes, but I couldn’t find any. As a result, I attempted the following approach. This approach also proved…