(...) ł Related documentation A detailed description of the functionalities mentioned herein and their configuration can be found in the following section of the WEBCON BPS Help: timer | WEBCON BPS Introduction timer s are elements that allow you to define the frequency with which the associated actions are performed. Thanks to them, it is possible to define the st (...)
Hi, during a call yesterday we realized, that a time previously timeout is executed after 10 minutes by default, if it runs into an error. This includes "Element was checked out" errors. While I agree that this may be a good thing for the production environment, but a pain in all others. Unfortunately my user voice was set to "Not now", but maybe it can be revisited now. https://commun
(...) Hi everyone, We're working on a process in WEBCON where we need to display a countdown timer on a form. Specifically, we want the timer to be shown in the [time until next adjustment] field, counting down to the next scheduled update. The timeout is set to update the [value] field, and the countdown should dynamically reflect the remaining time until that happens. Has anyone implemented something (...)
(...) thCheck = function(object) { let integerRange = new IntergerRange(object); object.value = integerRange.getValue(); } nxWebcon.integerRange.debounce = function(func, timeout = 300){ var timer ; return (...args) => { clearTimeout(timer ); timer = setTimeout(() => { func.apply(this, args); }, timeout); }; } nxWebcon.integerRange.processChanges = nxWebcon.integerRange (...)
(...) Fig. 1. Workflow diagram The process includes two defined actions: sending a document to Autenti, sending a request to return the document along with the status. The timer mechanism is also employed to automatically trigger the path responsible for checking the document's signature status in Autenti every hour. Business case For demonstration purpos (...)
(...) ect. at WebCon.WorkFlow.BusinessLogic.Automations.Engine.AutomationEngine.RunErrorFlowCollectionAsync(AutomationEvaluationParameters parameters, AutomationWithParameters automation, AutomationRuntimer esult currentFlowResult, CancellationToken cancellationToken) at WebCon.WorkFlow.BusinessLogic.Automations.Engine.AutomationEngine.RunAutomationWithoutResultCleanAsync(IAutomationWithExecutionCon (...)
(...) Hi, I have a process that use API to send data to another system. I have a patch in WebCon to check status, based on the feedback, process moves to the next step or waits another hour on the timer . I want to change this. I found this option in WebCon API: Path that will be used by element PATH /api/data/v6.0/db/{dbId}/elements/{id} But my second system don't have a PATH method. Do you hav (...)