Generate for you item list example DECLARE @tmp_WEBCON TABLE (WFD_ID int,DET_ID int, DET_ATT1 varchar(100), DET_ATT2 varchar(100)); INSERT INTO @tmp_WEBCON select 1 AS WFD_ID ,1111 as DET_ID ,'TEST_1' as DET_ATT1 ,'TEST_TEST_1' as DET_ATT2 union select 2 AS WFD_ID ,2222 as DET_ID ,
I had a similar case where an unsupported action remained in the process after an update. In my case, it was the action "Start workflow maually". Check your process to see if you might have a similar issue. select * from WFActions where ACT_ActionKindID = 34 and ACT_DEFID = {Your process ID}
Hi, if the user will never fill in this field manually and it will always be handled automatically by an action/rule, you can set the field to read-only mode (cannot be modified execpt by JavaScript).
Hi, in the described scenario, if you'd like to avoid overwriting the form, here's what comes to mind: 1. Collect data about the most recent attachment updates. 2. Use automation in a technical workflow to send added/updated documents to OneDrive – leveraging a "for each" loop in the automat
Yes for each! :) You can't use this "id" : [1111, 222], one number DET_ID, one posiotion You can do this with a business rule that returns data for the specified `WFD_ID` and use auto JSON to generate full JSON
Marcin, you can create an SQL query that retrieves data using WFD_ID and includes the details of the item list you want to update and using a REST API, you could integrate it into an automation process by specifying the WFD_ID from the source, the item list, and the automation action. This would all
The presented error is caused by filling the dropdown field with only the value "Auto." In WEBCON, dropdown fields require the format ID#Name. For example, if the default value finds more than one name for the word "AUTO," it cannot match the value. Try passing not just "AUTO" but the format ID#Name
What system version are you using, and could you share a screenshot of the error?
Hi! Could you share a screenshot of the error? It might be caused by the parent workflow also filling in something, or the field requirement being set without a condition. You could also try disabling validation on the attribute paths and see if canceling the process works.
You can change the context of use from a service account to your account or another one by specifying it in the PowerShell action configuration, but the person must have the appropriate permissions to access your data.
In the 2025 version, a new feature was added to allow transferring an attachment to another item with the ability to specify the Workflow ID. This functionality operates within the context of the current database. **Proposal for enhancement:** Extend this functionality to include the ability to
Slawek, you can create file with UTF-8 encoding, action Generate a text file on screen. Webcon version 2025.1.1.23
Hi Almin, You can also transfer tasks en masse per application/process or all of them using SUBSTITUTE
Hi Franek, Try the functionality described by WEBCON on kb.webcon - link below. https://kb.webcon.pl/eksport-zalacznikow-do-zip-na-udziale-sieciowym-za-pomoca-akcji-powershell/ This functionality using PowerShell,noperates in the context of the WEBCON service account, so it should have acces
Adding a confirmation dialog for the process cloning action. Occasionally, users may accidentally click the clone button, and this accidental click leads to cloning the entire process, along with the full process/action definition, etc.
Hello Marc, Data is not duplicated in the database if you don't make changes to the attachment. Basic attachment information is stored in the database in the [WFDataAttachments] table, while the attachment history, triggered by any edits, is stored in the [WFAttachmentFiles] table. If you make ch
Cezary, you can use openrowset function from ms sql. https://www.sqlpedia.pl/import-danych-z-excela-do-bazy-sql-server-za-pomoca-t-sql/ https://www.mssqltips.com/sqlservertip/6178/read-excel-file-in-sql-server-with-openrowset-or-opendatasource/
The current version of the API allows updates for the following fields: { "name": "string", "email": "string", "phoneNumber": "string", "managerBpsId": "string", "jobTitle": "string" } It would be useful to expand the user API to include fields such as: - Department - isAct
Will you also be carrying out the action of splitting one PDF containing, for example, 10 pages into 10 individual PDFs? In other words, splitting the document?
In WEBCON SDK add-ons, there is WebCon.WorkFlow.Extensions.GDPR -> Removing attachments (The action completely removes attachments with history.) Have you tried this action?