I am trying to schedule a class to run every 15 mins. i know we can set in salesforce for every hour, but is there a way to reduce the granuality to 10-15 mins.
global class scheduledMerge implements Schedulable{
global void execute(SchedulableContext SC) {
ProcessTransactionLog p= new ProcessTransactionLog();
p.ProcessTransaction();
} }