cancel
Showing results for 
Search instead for 
Did you mean: 

Defer Until parameter (Add to queue)

lulis
Level 3

Hi 

Im using this expression

ToDateTime(Today()&" "&LocalTime()+MakeTimeSpan(0; 0; 2; 0))


but the deferring isnt working

I mean, when I create the queue in my process to generate it, I try with the expressions in the defer until, but when processing the queue in another process everything is done at the moment, the defer does not work.


Thanks !!



------------------------------
Lucia Lisdero
------------------------------

2 REPLIES 2

Daniel_Sanhueza
Level 8

Hello Lucia,

BluePrism works on UTC time so you have to consider that when working with datetimes. To Fix that, the function should be;

ToDateTime(Today()&" "&UTCTime()+MakeTimeSpan(0; 0; 2; 0))

Regards!



------------------------------

If this was helpful, please mark it as the best answer 🙂


Daniel Sanhueza
RPA Professional Developer
Deloitte
America/Santiago
------------------------------

Daniel Sanhueza
RPA Professional Developer
Deloitte

thank you ! 

It worked for me with this one too!
Now() + MakeTimeSpan(0;0;2;0)



------------------------------
Lucia Lisdero
------------------------------