This article will explain how to create a Mule API that can UPSERT (INSERT and UPDATE) and RETRIEVE contacts information from Salesforce CRM using Salesforce Connector. 1. Define the RAML and Generate the RAML Flows: POST: /contacts — Resource that will upsert contacts in Salesforce. GET: /contacts —
Read More
Requirement : Modify an existing batch Apex job to raise BatchApexErrorEvents Take an existing batch Apex job class and update it to implement the Database.RaisesPlatformEvents interface. Then, add a trigger on BatchApexErrorEvent that logs exceptions in the batch job to a custom
Read More
What is a Custom Label?Custom labels are text values stored in Salesforce that can be translated into any language that Salesforce supports. Use custom labels to create multilingual applications that present information (for example, help text or error messages) in a user’s
Read More
Convert Leads into Accounts, Contacts, and (optional) Opportunities on-demand according to your criteria. This solution includes one apex class and its unit test. Get the complete class and test class from github repository : https://github.com/mhamzas/sfdc-auto-convert-leads-process See below instructions for setting this up
Read More
This project provides the missing configuration and scripts for running the Apex Data Loader from Linux or Mac command line. The Apex Data Loader provided by Salesforce.com is for Windows only but it is a Java jar file that can be run
Read More
Salesforce has baked in some “magical” features into its platform. Two of my favorites are the upsert command and the use of External IDs. If you are new to the platform, you’ve probably seen the option of making a field an “External
Read More
We all know Contact Role objects have been a pain in the …! Why? Because they are not first class objects, which implies you cannot create workflow rules, process builder or triggers on these objects. There are ideas posted, to vote for,
Read More
Lightning Web Components (LWC) is a new development approach provided by Salesforce. If you are still thinking where to start studying about Lightning Web Component (LWC) then you can start from here. In the end I have added link of other post which you
Read More
Salesforce is back again with Summer 19 Release. In this Hot summer, Salesforce comes with some of the cool features. I go through the Salesforce Summer 19 Release Notes and found some point. Which are useful for both Salesforce Admin and Developer.
Read More
Let’s discuss here how to call the apex class from the Lightning web components. Lightning web components can import methods from Apex classes into the JavaScript classes using ES6 import. Once after importing the apex class method you can able call the apex methods
Read More