Hi all! We have a new customer who has a central IT service department. As for the database, we can just order a certain amount of databases, which we then have access to. The question is, is it even possible to install Webcon into existing databases (e.g. Config, Content, Att,...) or do we ne
Hi Kamil! Thanks for the answer. So that would mean we have the same assembly with the same version in different packages with different MD5?? That's interesting ;-) Since version is also contained in Assemblies full name, we can assume that plugins will work with different versions of the
Hi all! I am getting a strange warning when deploying a second SDK plugin package to customer environment (see screenshot). The background information is: Both SDK plugins need System.Text.JSON namespace for serializing / deserializing JSON objects, which requires a bunch of satellite assembli
Hi all! We are wondering if there is a good way to add new items to an item list on the client side. We already found a way to add new item (which can be triggered by a form rule) and set some form fields before, which then act as default values for the new row. Since it all is asynchronous
Hi Maksymilian & Daniel! Thanks for the answers. Yes, it starts on step entry date, after that it runs on its configured interval. I was sending a payload to an external webservice on a path. The problem was that external webservice was immediately trying to consume my workflow element, whi
Hi all! We are currently biting our nails with the following problem: We need to delay execution of workflow for 1 minute, after 1 minute it should go to a path. Every attempt to achieve that failed up to now. The attached setting should trigger after 1 minute (as far as I understand tha
Hi Patryk! Yes, they should be unrelated ;-) Best regards, Nik
Hi Patryk! This should be an easy task ;-) Have a look at the 'Start a subworkflow (SQL)' action. You have to create a DB connection first to your assets DB, then you should be able to implement the specific SQL statement for this action. Best regards, Nik
Thanks Daniel! I ended up with storing the JSON array with round brackets and replacing them in my JSON query with curly brackets. Best regards, Nik
Hi Maksymilian! Thanks for the good tipp. Unfortunately it's the same database and compatibility level is set here to 130. If I test (in Designer Studio) the following query: SELECT '[{"id" : 1,"code":"925006300000","name": "Test 1"},{"id" : 1,"code":"925003600000","name": "Test 2"}]' AS
Hi all! We want to add some rows to an item list with 'Change item lists values' action. The SQL query should take a JSON array (which is perfectly valid) from UI element and return a table for adding new rows to this item list. Unfortunately this does not work. There seems to be some parsi
Thanks for your response Daniel, but if you take a look at the generated Javascript from form rule, I personally don't think this is a safe and future proof way to go ;-) We took a look at the 'Change item lists values', which seems a good way to go, but this requires a global menu action to be
Hi community! We want to add new row(s) to an item list due to customer requirement. This should be triggered on button click, that means on the client-side. Unfortunately I didn't find a way, to insert new row(s) to an item list in available JS functions. Does anyone know how to do that
Hi community! In some scenarios it is necessary for us to render datatables on form containing some custom links or buttons. For this reason we built following SQL statement for testing purposes: SELECT 'Internal' AS ID, 'Click me' AS HTML UNION SELECT 'Azure' AS ID, 'Link' AS HTML A
Hi Daniel! Same here :-) I thought about reading the manual first, and there it is, right at the beginning. https://community.webcon.com/posts/post/automations/308/18 Thanks a lot & best regards, Nik
Hi community! We are getting some data from external system via REST API. Specifically workflow elements are created and there is a default path for saving workflow element. This can be easily done with the well known POST endpoint: /api/data/v4.0/db/{dbId}/elements Now we are facing th
Hi Daniel! Thanks a lot for the answer. There is always room for improvement ;-) I tried to use a datasource, and added some columns from this datasource to a custom action, which writes content to file and the result is empty, so I personally don't think the new feature has been finished.
Hi all! I personally think the operator 'ForEach' is a great addition to version 2022.1.2.31, thanks to Webcon Team. Unfortunately I do not find any documentation on that, especially how to iterate over 'Any Collection' and access columns in custom action. If I select 'Any collection' and
Hi all! We have to update some columns in a workflow dependent on other columns from the same workflow item, e.g. WFD_AttDecimal1 = WFD_AttDecimal2 * WFD_AttDecimal3. Sounds trivial, but it isn't, especially in a SaaS system, where 'Run an SQL procedure' is missing. Another approach for us
Hi Daniel! I tried out your SDK business rule (GetQueryParameter) on version 2022.1.1.53. Unfortunately that does not work since HttpContext is always null here (Object reference not set to ...) HttpRequest request = (new HttpContextAccessor()).HttpContext.Request; I wonder if this is po