Hello,
I want to stop process till some conditions are met, after that want to continue process.
i saw that, but its not good for perfomance wise, since it will strain cpu, since loop might continue maximum for month, any other idea? trying to stop process with script but its not working either, its getting stuck.
Hi @someneedforspeed,
So you want to pause the process unti some conditions met?
Hi @TaQuangKhoi
Yes, i tried many things but still no result, im open to any ideas to try 
@someneedforspeed What is your conditon? Is it based on a a boolean value on database?
@TaQuangKhoi Sorry, i was out of touch
so condition is like for example: caseVariable is null and once its filled with some text, i want it to continue…
i would use iteration kind that is on documentation, but its not good to do for month, Done tasks are accumulated 200k + and its straining cpu 
Your system will check caseVariable A in an interval like 1 hour.
If A == null => wait more 1 hour to check again
else => do some stuffs
@TaQuangKhoi you mean timer?
Well i went with boundary message catch method. thanks for help tho