Hi, It works! Thank you, Raluca Lupu
Hi, I'm trying to use the "change the value of a single field" action to set the image field to empty after an image was added. The action is done, but there are no changes regarding the image (it's still there). WEBCON version 2022.1.1.53
Hi, I used sql profiler and I remarked the problem. The defined parameters from global business rule is recognized in the first global business rule from sql script ( from the concatenate multiple global business rules from sql script ), but isn't recognized in second business rule. In the attach
Hi, Thank you for answer. I've tested every global business rule and it's okay. I tested in my global business rule, the sql script with global business rules, but I send the harcoded parameters and it worked. I changed the value with the defined parameters and I get the error. The problem is w
Hello, I tried create sql script for created a global business rule with existing multiple global business rules . I tried use of multiple global business rule ( with parameters) in one global business rule (with parameters). Every global business rule used has parameters. The business rule that
Hi, I solved problems by upgrading from version 2020.1.3.494 to version 2021.13.8 Thank you for the help Thank you, Raluca Lupu
Hi, We have only one database installed , it’s a fresh install. We use the Webcon version 2020.1.3.494. When we try to access the Designer Studio from another machine than the one on which the webcon is installed, we get the error "Value cannot be null. Parameter name:id" Thank you, Raluca Lupu
Hi, I tried to access the Design Studio and encountered this error. Has anyone encountered this problem before? Thank you, Raluca Type: System.Exception ------------------------------------------------------- Message: Value cannot be null. Parameter name: id ---------------
Hello, I tried to create a task action on a save path in the dictionary. After saving the task is created but I can't close the task. How can I close the task created? Thank you, Raluca
Hello, I tried use action "Invoke SOAP Web Services", but I get this error "dll was not found" I tested using another platform for Api development and it works. Thanks regards, Raluca Lupu
Hi, Thanks for your answer
Hello, I tried to use "ConfigEditableDropDownList" for input parameters and it will return List object I uploaded the project sdk but not working. How to configure the type parameter ConfigEditableDropDownList? Best regards, Raluca Lupu
Hello, The information entered in the dictionary is saved in the database in the table WfElements. You can see all the entries in the dictionary by the next query select * from WfElements where wfd_dtypeid= (id)form_type Validation for dublicate information: if exists ( select top 1 1 from WfElem
Hello, To delete all the rows in the list I created the following code, written in c # via the SDK actions public class DeleteRowFromItemList : CustomAction { public override void Run(RunCustomActionParams args) { var list = args.Context.CurrentDocument
Thank you very much, Raluca Lupu
What would be the best method to remove rows from the item list of an instance inside an SDK plugin in order to make use of them in C# code? I tried to remove rows from the item list in the code C# (SDK plugin ) using function : WebCon.WorkFlow.SDK.Documents.Model.ItemsLists.ItemsList.RemoveAt(i
What would be the best method to get the attachments of an instance inside an SDK plugin in order to make use of them in C# code?