Using the SQL tracer, we identified the root of the issue. The queries within the IF statement are returning incorrect results. Specifically, the following query: SELECT COUNT(*) FROM WFElements WHERE WFD_WFDID = {WFD_ID} AND WFD_DTYPEID = {DT:494} returns 0 (zero), even when it shouldn’t.
Hi everyone! After upgrading to version 2025 we noticed that the Advanced settings are not working in the same way as they were in the previous versions. The query that was working just fine before is not doing its work. Does anyone else have the same experience? If this helps, this is the query
Based on your description you're looking for the out-of-the-box Datarow field type, aren't you?
Hi Maria, Please check the attached images and see if that helps. Come back with additional questions if you will have any. The javascript functions can be inserted in a HTML field, enclosed in the tag. Best regards, Martin
Hi Karol, Thank you so much. I had the wrong mode selected and it didn't occur to me that this might be the issue. Solved. :) Cheers, Martin
Hello everyone! Does anyone know if there is a way to start a workflow instance based on xml file stored in a folder on the disk? Unfortunately the HotFolder functionality allows starting workflows only for a few supported file types. Any chance to workaround this limitation? Thank you, Marti
Hey mate. The code won't work because the [href="/db/1/app/10/dashboards/system"] is a css selector to target the element that has this href tag, not to apply the styling based on the application URL. ;)
Oh, come on, I'm no God. I'm glad I could help, though.
Hi Marcin, Yes, you can change the fields that are shown in this view at process level in the tab "Compact view". There is a maximum of 6 fields available. You could target the specific row with the below css which you can insert in the global css, but this will then be applied across all app
The reason is CSS. Please note the difference in the two attached images. One is with the default settings. In the other I added the "white-space: break-spaces;".
After some more exploring, I don't think this (not confirmed translations in the translator tool) is the issue. I tried downloading the German language file which is almost 100% complete and after uploading it to Designer Studio, nothing is showing in the frontend in German (it's all still in Englis
Ah... OK, got it. Is there a way to workaround that, maybe manually translating a file and uploading it?
Hello! I'm trying to import Slovene language pack obtained from the https://bpstranslator.webcon.com/ What I did: 1. Added a new record to the Interface language packs in System settings: sl-SI (Slovene); 2. Uploaded the .zip file downloaded from the BPS translator tool mentioned above; 3.
Hello Sandra, I think you need to use the UNPIVOT. Something along these lines should do: SELECT AttributeName, AttributeValue FROM ( SELECT WFD_AttText1, WFD_AttText2 FROM WFElements ) AS Source UNPIVOT ( AttributeValue FOR AttributeName IN (WFD_AttText1, WFD_AttText2) ) AS
Hi everyone, Does anyone know if it is possible to move the whole folder "C:\Program Files\WEBCON\WEBCON BPS Search Server" to a different disk? What are the steps needed to do that? Thanks, M.
Hi Adam, I don't have a solution. Rather an idea. Did you check the space on the disk when the issue occured? Was there enough space? M.
Hi Paweł, you can also have a look at this thread https://community.webcon.com/forum/thread/3293 and see if the information provided in the answers helps.
Very good idea. I would add one more enhancement: to be able to insert dates in other formats as well. E.g.: if you write 0112 and pressing tab (or enter) it would automatically switch to 01/12/(current year).
Hi Maksymilian, Thank you for your response. Although I didn't implement it your way, it got me into the right direction and at the end I opted for some custom JS and CSS. Best regards, Martin
Hello, Does anyone know if there's a way of adding a tooltip to custom buttons one adds to the form? I have an item list with a datarow column. Inside this column I'm creating a button like so: Basically, I'm replicating the buttons from the action column. I kno