Defines a time sequence that starts at a particular minute of a particular hour and then occurs every few minutes. Returns “Yes” if the current time coincides with the sequence occurrence.
identifier of the time sequence (any text that has to be unique across all sequences), minutes of the hour when the sequence starts and time interval of the sequence in minutes
IF NEXT_SEQUENCE_TIME('SEQ1',0,15) = 'Yes' THEN DoSomething /* this will return Yes at 00, 15, 30 and 45 minutes of every hour)*/