a week ago
I am using the Run Process until end but does not know how to update the Timespan under Time out. Appreciate any guidance. I need to set the time out at 10 minutes. The below screen shot is from the Utility Environment. Thanks
Answered! Go to Answer.
a week ago
MakeTimeSpan(0,0,10,0)
In the MakeTimeSpan function, the arguments are days, hours, minutes, seconds, so I put 10 in the 3rd argument above.
I should mention though that I agree with Denis that you should go through some Blue Prism training if you haven't done so already. TimeSpans are a bit weird and it's normal to not have this memorized. Where you could have found this answer is by looking in the list of functions at the bottom of the expression window that you can open in various places such as a Calc stage.
a week ago
This is in the standard Blue Prism training courses which might be worth revisiting, i am also sure there are pages in the Blue Prism help that answer this as well as previous threads in this forum.
When starting a process in control room if you right click on the pending session and select start up parameters you will be able to change the values that will be passed through to the session. Schedular has similar functionality and if starting a process by command line or API there is (hopefully still is) a startp command switch.
If you want to add or change existing start up parameters (outside of the standard built in ones) you do it on the start stage of your process.
a week ago
MakeTimeSpan(0,0,10,0)
In the MakeTimeSpan function, the arguments are days, hours, minutes, seconds, so I put 10 in the 3rd argument above.
I should mention though that I agree with Denis that you should go through some Blue Prism training if you haven't done so already. TimeSpans are a bit weird and it's normal to not have this memorized. Where you could have found this answer is by looking in the list of functions at the bottom of the expression window that you can open in various places such as a Calc stage.
a week ago
Thank you