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?
- Identify_Recs_to_Delete
- {
- Execute on 28 days after of REQUEST.Modified_Time
- }
What?
- rec_ID = (REQUEST[(STATUS == "Complete")].ID).getall();
- for each element in rec_ID
- {
- delete from REQUEST[ ID == element.toLong() ];
- }
Cheers,
John Whitney