WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question

Daniel Krüger (Cosmo Consult)

MVP

Hi Mark, this is not possible. The path transition, along with all actions, is only triggered when the task is completed. If you set it up, so that all needs to complete the task, you will have the described effect. An alternative approach could be to use the standard "if anyone completes the t

Hi Björn, this link works in 2022.1.2: https://*.domain.com/api/nav/db/1/attachments/3062/download You can easily verify it by 1. executing the download link from the context menu of an attachment, 2. open the download window in the browser 3. Right click on the file and copy the downlo

At least for WEBCON BPS 2022 we have an official answer. :) https://community.webcon.com/posts/post/webcon-bps-databases-in-the-sql-2019-compatibility-level/320 From WEBCON BPS 2022.1.1, the lowest supported SQL Server is 2014. In the case of WEBCON BPS installations using the higher versions

Hi Marcin, you can use the below code inside a form rule which is set to JavaScript mode. The form rule in turn is executed OnPage load / behavior tab of the form. What the script does: 1. Show all attachments tab, which triggers loading the related attachment. 2. Once the loading is trigger

Calculate SLR in days
24.04.2022 23:42

Hi kaluser, I'm replying from my mobile so I can't make Screenshots and can't verify a few thinks. In your case I would do the following : 1. Check the workflow history in admin mode to see whether the action has been executed. 2. If this is the case and no other following action has overwr

Hi Ingo, I don't know your workflow but there's a potential problem. You only check the Workflow Tasks for the step. So if the workflow has some kind of reject path there could be the case where you exclude those users how completed the task on the previous approval iteration. I think that ther

It seems, that someone updated the database compatibility level. From Changelog 2022.1.2.31 https://community.webcon.com/download/changelog/106?q=b6419bb Fixed a problem with query performance e.g. in reports. The error occurred if the compatibility level in SQL databases (SQL 2019) was equal

Hi Nik, if you are using type script you are probably creating an extension using the SDK. This could be an interesting idea. :) I haven't tested it (knowingly) with 2022. Unfortunately I'm to busy at work with non BPS related tasks and I have other urgent tasks which I have to do during my sp

Hi Nik, thanks and if you have a better /simplified logic I would be glad to take a look and publish it. Of course I would mention you. :) I can understand it if you don't want to. So don't feel pressured. Regarding the modal, maybe adding different URL parameters would help. We could take

Hi Ingo. you are right these changed with version 2022. I know I've read somewhere about this change but I couldn't couldn't find it again. The only thing I remember is that applications registered with prior 2022 will work as before but new ones have to be configured using the new options. I

Hi Nik, it seems that idea 2 would have worked, but won't do so in the future: From the change log of 2021.1.5, and this will probably be included in the next 2022 version too. Added a mechanism for checking the integrity of data set in the choice fields with data source values configured f

Hi Ingo, more information about starting a workflow via REST can be found here: https://developer.webcon.com/docs/bps-rest-api/ This page has also a link to this sample: https://github.com/WEBCON-BPS/develop-docs/tree/ver/2021.1.1/HelloWorlds/WebCon.BPS.HelloWorld.RestAPI Best regards, D

Hi Nik, can you switch the mode of the field from dropdown to autocomplete or popup search? Then you could set the value of the field to the workflow id and it will work just fine. I blogged about the same approach here: https://daniels-notes.de/posts/2022/add-new-choice-field-value-without-lea

Hi Adam, thanks for the update. I tend to forget to look at the installation guide, sometimes there are worthwhile information. :) I'm cross linking this thread in case someone stumbles about the "dynamic compression module" BPS 2022: Enable IIS feature "Dynamic Component" https://community.

Counting the attributes used
06.04.2022 16:02

Linking this thread which has the same topic with a slightly different query: Form field count report of an application https://community.webcon.com/forum/thread/1239?page=1#m1240

Hi Fabian, ROW_Number is not allowed, this has also been added to the info tooltip in BPS 2022: Quote Because of this mechanism, there are certain limitations to the query syntax, such as: 1. The query should return the data in the following format: SELECT column1, column2, ... FROM table_n

Update Form field Values
01.04.2022 18:58

Hi kaluser, default values are only set when they are empty. Since the default value is executed when the Form is opened it automatically assigns value 2. At least if the workflow population I'd hasn't been set in a previous step. You could change the business rule and some other properties to

Regular expression problem
01.04.2022 17:49

Hi Radek, that's the correct behavior as you have not specified that after the 11 digits nothing else should follow. Actually even a string like a12345678901asd would be a match. You can easily test the regex using the online tool which is linked in the designer studio. If you want that only 11

Hi Darek, the simplest way for your case could be the following: Add an html field where you define the css style. #SEL_SQLGrid_728 td[data-column="WFD_Signature"] { font-weight: bold; } #SEL_SQLGrid_728 tr:nth-child(odd) { background: yellow; } Replace the ID 728 with a reference o

There's always something new to learn. :) For example a documentation, the blue info icon, was added which sql functions can not be used in a sql query. :)