1. From the Developer Console, click Debug | then Open Execute Anonymous Window.2. Execute the following code. Id runningJobID = Database.executeBatch(new TestBatchForRun(), 200); After running this piece of code you will get the Debug log for the same and you check if the batch is running or not. With this you can even go to Setup > … Continue reading How to run batch Class in Salesforce?
Trigger To check Duplicate on Lead Using Email and Phone
The above functionality can be achieved by duplicate rules. But as we are into coding we will be writing trigger for it. We will be writing Trigger and Handler for it. The best practice for writing a trigger and Calling the apex class in which we will be writing the business logic for it. Apex … Continue reading Trigger To check Duplicate on Lead Using Email and Phone