I have a situation where I need to hold a task for a certain time period. The condition is as follow:
1) If the task is activated before 8.30 AM on a particular day, it should wait till 8.30 AM to be completed. If not , it should take the exception path post 8.30 AM.
2) If the task is activated after 8.30 AM on a particular day, it should wait till 8.30 AM of the next day to be completed. If not , it should take the exception path post 8.30 AM on next day.
Can anyone please help us on the above logic?
Discussion posts and replies are publicly visible
I recommend to implement to logic in an expression and execute this in a script task. Store the output in a process variable, then use this in the exception timer.
Your logic is a simple if condition. What exactly do you need help with?