Events (COMPONENT and APPLICATION) In Lightning Aura Component There are multiple way to pass parameter between Lightning Aura Component. Below are Events use in lightning for same purpose…
Interview Preparation for Salesforce 1. How to Create and update record in custom metadata.CreateUpdateMetadataUtils implements Metadata.DeployCallback, object => MeataData.ContainerMetadata.Operations.enqueueDeployment(mdContainer, callback); DML On Custom Metadata…
@InvocableMethod : call apex method and pass parameter through process builder We use @InvocableMethod annotation, whenever we want to invoke an apex method from the Process Builder then that method must…
Total number of Contact count shown on Account Object Using Apex Trigger Trigger should be written on contact object. The below code is working for all listed operations Inserting Contact with an…
Apex Rest API Integration Salesforce In this blog post I am going to elaborate End To End Apex Rest API integration in salesforce. #Connected App…
Everything about batch apex Basically we have three method in Batch Job which are implemented by Database.Batchable Interface-Start-Execute-Finish Below are the interface we can…