Hi,
In my service desk I want to create a request portal where sale can booking a meeting with presale. But I want to create automation reject request if create request date less than 48h with booking date.
In portal, I have field "Meeting Date/Time" type Date time pickers. In automation what condition I need to create for this case?
Thanks,
From automation, you can use JQL to match your custom dates, but the solution i found is not the best to measure this.
The function now() doesnt accept informing the time comparinson so, I would do an approximate comparison by using startofday()
This JQL would search for the dates in the field (used due as example) from the startofday of ticket creation (its midnight for this function).
duedate <= startOfDay("48h") and due >= startOfDay("-48h")
The limitation is that its not the "48h" from ticket creation.
The other way is using add-on that let you to compare dates and so on....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.