Form Schedule Frequency

Form Schedule Frequency

I have a form schedule below. My intention is to have it run constantly, identifying records to delete based on the criteria. Since the  Modified_Time is only a date record, the frequency = Once. Does this mean the schedule will only one Once and then quit forever?

When?

  1. Identify_Recs_to_Delete
  2. {
  3. Execute on 28 days after of REQUEST.Modified_Time  
  4. }

What?

  1. rec_ID = (REQUEST[(STATUS == "Complete")].ID).getall();
  2. for each element in rec_ID
  3. {
  4.     delete from REQUEST[ ID == element.toLong() ];
  5. }

Cheers,
John Whitney