Need Advice

Shweta

Active Member
Hello All,

Please help in below query.

I have taken a Environment Variable "Stopping Time" of Time type and and passing the value, say 12:15:00PM.. Now i created a process with flow as:

1. Start
2. It will check if Stopping Time has reached. (Decision Stage)
If Stopping Time has not reached, it will Sleep for 10 second and check again.
But if Stopping Time has reached, it will end the Process.

For checking the decision, if Stopping time has reached, I am using below expression:
IsFlag([Stopping Time])

Can anyone please confirm if this is the correct way to check or is there any other function?
 

sivagelli

Well-Known Member
For checking the decision, if Stopping time has reached, I am using below expression:
IsFlag([Stopping Time])
I don't think this will serve the purpose. You have validate the current time against [Stopping Time].

IsFlag(), checks if the text passed is flag or not.
 
Top