
Apex Scheduler in salesforce
Apex Scheduler in salesforce If you want to schedule apex class to run at regular intervals then you need to write an Apex class that […]
Apex Scheduler in salesforce If you want to schedule apex class to run at regular intervals then you need to write an Apex class that […]
global class contactBatch implements Database.Batchable<sObject> { global Database.QueryLocator start(Database.BatchableContext BC) { String query = ‘SELECT Id,Name FROM Contact’; return Database.getQueryLocator(query); } global void execute(Database.BatchableContext BC, […]
Batch Apex in salesforce Batch Apex in salesforce is exposed as an interface that must be implemented.Batch jobs can be programmatically invoked at runtime using […]
Copyright © 2019 | WordPress Theme by MH Themes