Specify weekday AND time within a time constraint | Community
Skip to main content
KelFromLondon
Level 2
April 23, 2019
Solved

Specify weekday AND time within a time constraint

  • April 23, 2019
  • 2 replies
  • 3105 views

Does anyone know of a way to edit time constraints so that we can specifiy both a weekday and a time instead of just a time (if current time is between 12-3pm AND today = Sunday) then proceed within the workflow, otherwise wait until these conditions are true.

I've created a condition within the test node that can check the current date and time, but can't find a way to put it into a time constraint.

new Date().getDay() == 0 && new Date().getHours() >= 12 && new Date().getHours() < 15 

Has anybody ever tried to do this?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by DavidKangni

try the following

- add your workflow after the true transition

- add a wait activity after the false transition (in my test the wait is one hour)

Thanks

David

2 replies

DavidKangni
Community Advisor
DavidKangniCommunity AdvisorAccepted solution
Community Advisor
April 23, 2019

try the following

- add your workflow after the true transition

- add a wait activity after the false transition (in my test the wait is one hour)

Thanks

David

David Kangni
KelFromLondon
Level 2
April 24, 2019

Thanks David,

This should do the trick.