Add this

global class MyBatchClass implements Database.Batchable { global (Database.QueryLocator | Iterable) start(Database.BatchableContext bc) { // collect the batches of records or objects to be passed to execute } global void execute(Database.BatchableContext bc, List

records){ // process each batch of records } global void finish(Database.BatchableContext bc){ // execute any post-processing operations } }

Monday, June 26, 2017

Salesforce Apex Code Corner: Dynamic Visualforce Page In Apex Salesforce

Salesforce Apex Code Corner: Dynamic Visualforce Page In Apex Salesforce: Hi Guys , We can create Visualforce Pages dynamically . Just need to write the script in Apex Class and avoiding on Visualforce Page. He...

No comments:

Post a Comment