• JoeStolz
  • NEWBIE
  • 15 Points
  • Member since 2015
  • Business Systems Administrator
  • Midland IRA

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Can someone tell me how to run this scheduled job manually from the Developer Console?
global class ScheduleBatchCreateMonthlyCharges implements Schedulable
{
  public ScheduleBatchCreateMonthlyCharges() 
  {
    
  }

  global void execute(SchedulableContext SC)
  {
      Id batchInstanceId = database.executeBatch(new BatchCreateMonthlyCharges(), 1);
  }
}

Thank you
Can someone tell me how to run this scheduled job manually from the Developer Console?
global class ScheduleBatchCreateMonthlyCharges implements Schedulable
{
  public ScheduleBatchCreateMonthlyCharges() 
  {
    
  }

  global void execute(SchedulableContext SC)
  {
      Id batchInstanceId = database.executeBatch(new BatchCreateMonthlyCharges(), 1);
  }
}

Thank you