Questions, discussions, news and updates regarding the Thinkwise Platform.
Recently active
Hi,Is there an option to have a mulitselect lookup? I have a task where a user can select values in a lookup. I want to give the user the possibility to select multiple values in the lookup field.Is this possible in TW? Thanks,Peter
i’m planning to read (every second) an external webservice.If I query the URL via http (http://some_ip/webservice/_read) the output is:How can i read this http output and store the informations ?Should I use HTTP Connector?
Which headers for an API request are implicitly filled by the SF?I want to call an API and the error message is -4 - Unsuccessful (invalid headers).I also use a header [{ "Key": "x-api-key", "Value": "123"}]. I have successfully called the API with the following headers in Postman. Again there is too little information in the documentation and this costs me a lot of time to figure out by trial-and-error.
I have a procedure B that is called by procedure A.In Creation- Execute source code I do get warning: The module 'A' depends on the missing object 'B'. The module will still be created; however, it cannot run successfully until the object exists. I had changed the Generation order no. on procedure A to 99 and on B it is 100 (Functionality)but that did not do the trick.How can I fix this?
I have a question regarding the decision task. I created a small process flow that needs to execute the create wallet task based on whether or not a variable has been set. (see diagram) In order to get this result I have implemented a decision activity and corresponding process functionality. But no matter the outcome it always seems to execute both tasks. declare @has_wallet bit = 0;set @has_wallet = ( select coalesce(( select 1 from wallet_employee we where we.location_id = @location_id and we.employee_id = @employee_id ), 0) )if @has_wallet = 1begin -- wallet available set @has_wallet_execute_task_create_wallet = null; set @has_wallet_execute_task_create_employee_lunch_transaction = 10;endelse if @has_wallet = 0begin -- no wallet available set @has_wallet_execute_task_create_wallet = 10; set @has_wallet_execute_task_create_employee_lunch_transaction =
More than once we get the request from our clients to have more control on grids where we can preset which columns to show and where the hidden columns could be shown when desired. At this point we have only in the web GUI the following tool from Thinkwise: However, it would be nice to have the option to make presets from within SF/Subjects. Or, if somehow we could create this programmatically. Maybe there already exists a way how to accomplish this? Please advise,thank you,Paul
In a grid screen of a table. I have different tasks to start, depending on the type of record that is selected. So multi-row is not wanted here. Is there a possibility to set the screen of this table or variant to single-row selection?
When using indicium (basic), a user will be locked out after an x number of wrong login attempts.My question:Is it possible to change the number of allowed login attempts? Extended propery perhaps. Can the number of minutes a user becomes locked out be changed? Extended propery perhaps. Can Thinkwise change the message a user gets after reaching the number of failed attempts?Currently the message: “username and password combination is wrong” is NOT correct. After applying the correct password the message stays the same…. One has to wait the number of minutes shown in the indicium log (see below).Ideally the message should read “You are locked out for another 4 minutes because of wrong credentials”Log (example)2021-10-21T13:23:58.2391860+02:00 0HMC4OISQL7AA:0000004A [err] Login failed for 'Klaas.Vaak@home.nl' because the maximum number of failed login attempts was exceeded. Retrying is disabled for another 5 minutes. (26a1e4c9)2021-10-21T13:23:58.3016692+02:00 0HMC4OISQL7AF:00000035 [er
I noticed that, when making a conditional layout, if I specify the condition like this:the relevant columns in the table look like this, where I’d expect a conditional layout to be applied.However, by simply interchanging the columns in the conditionI do get a working conditional layout:What’s going on here? I’d expect the order of the columns in the Condition to not matter. Is this intended, or would you like me to report this as a bug?
I have an API for parsing barcodes, this was the advice from my previous topic. Am I obliged to pass a JSON array if I want to pass one value?Error message ThinkWise:Using process variable Postman:
I've got a subject with prefilters. I have changed some default settings for the prefilters and this works fine… However… Where is this information stored? I can't find anything in IAM (table usr_pref_tab_prefilter_status), nor do I see the information where I'd expect to find it within IAM:Anybody an idea what I'm missing here?
When I use cubes with a time dimension, I often have to add empty entries for a time dimension (e.g. dates, weeks or months). This gives a better view in time. Is there a solution in the model to extend the time dimension with missing entries?
Showing email messages with the previewer is a very nice feature, exept this message which appears before a message can be previewed. In our scenario msg files are saved in a shared network folder.Any ideas on how to get rid of this warning? I hope there is a way to do this, without changing settings in the Trust Center of Outlook/Office.
In IAM it is possible to specify environment specific settings (similar to app.config in C#). See Authorization >> Applications >> Properties. Is it possible to encrypt fields here (e.g. in case of a security token or password?)
Hi, is there something changed in call_web function? When we try to start some websites, for example www.thinkwisesoftware.com we get an error "The request was aborted: Could not create SSL/TLS secure channel." Other websites don’t (www.google.com, www.nu.nl) call_web www.thinkwisesoftware.comon www.nu.nl it’s working fine: c# - The request was aborted: Could not create SSL/TLS secure channel - Stack Overflowor do I have to change something on our server? We have 4.7.2 installed Any idea or suggestion?
Hi,I've made a process flow where users can assign multiple groups to an article. The flow starts with a task (nr 1) with several task parameters, the output values are bounded to process variables. I want to use these variables later in the flow when task 2 is executed.The flow goes through a list of articles, and in the detail tab the user can assign multiple groups (in the step ‘Grid edit’) to that article, with a checkbox.What I want is that task 2 is executed after the user left the grid edit-mode, but at this moment the task is executed immediately after starting the flow.Is it possible to ‘wait’ until the user left the Grid Edit-mode or how do I achieve this?I'm quite new to process flows, so maybe this isn't logically built at all..
Hi,How can I overcome this error that happen on some tables but not all - without altering the current code (i.e. expression fields from the table) or the datamodel:It looks like the query is that is behind the load task has been shortened/truncated/cut-offrgds Ricky
I'm trying to convert some trigger logic to default logic, because I would like to use the 'system versioned tables'. Having triggers causes a lot of records in the history table, which isn't necessary.I'm currently using a trigger to update the 'update_user' and 'update_date_time', and also an update_counter for preventing concurrent editing. I've tried to set up a default which sets the update_user and update_date_time. Problem is that it's only fired when a column has default logic enabled and the value is changed. What I want is that the default is also triggered when the user starts editing. Or maybe after he's done editing. Then I would like to update the update user / datetime. When inserting a record this happens (e.g. @cursor_from_col_id is null), but when editing it isn't.A work around is passing all table columns to the default, but I don't want this because it's unneccesary and a performance killer.Any suggestions on this case, preventing unneccesary records in the history
For our customer we have to adjust a string. This requires a DLL written in C# that we want to deploy on an AWS RDS SQL server. Is this possible and how do I go about doing this with safety in mind?For parsing a barcode text field into information useful to the client, the DLL is written in C#. If the above is not possible, please provide an alternative. Thank you.
I would like to export a SF project with version 2021.1 and import it on another SF (on another system) with version 2021.2. What is the easiest way to accomplish this? I have read the article about the stored procedure (copy_project_vrs). But it seems this only works with the same SF version:
This is an Archived topic. The solution is available in the Thinkstore inside the Software Factory.GoalThe goal of this solution is to automatically add trace fields to all tables so the user can see who added the record or who made the last change. This solution adds these fields to a separate tab page on a form. This looks like this in the GUI: You can choose at what moment you want the fields to be filled: During editing or after saving the record.SolutionThe solution consists of code for Dynamic Model (for adding the fields) and two Control Procedures (for filling the fields). Depending on the moment you want the fields to be filled (during editing or after saving), you can choose either for a control procedure for defaults or for a control procedure for triggers.Dynamic model add_trace_columnsThis code adds trace columns to every table.The trace fields are: update_user update_date_time insert_user insert_date_time If you add the tag 'no_trace' to a table, no trace columns
Good morning, I would like to have a conditional layout in a variant of a subject. With a default subject template, I would go to Subjects > Default > select the relevant subject > Data > Conditional layouts. However, with Variants, there is no option for Conditional layouts in the Data tab. My current workaround is to create a view that contains the same data as the variant I want a conditional layout for, then set that view as a detail of the Default subject. This is quite unpractical, and I feel like I should be able to set a conditional layout in a variant. Is this at all possible?Edit: I just found out that I can create a Conditional layout in the Default, then enable or disable this layout in the Variant.
When creating a new azure database from the creation menu it's automatically created in the highest pricing tier. This is since the Create database query uses the default gen5 tier.There seems to be no way to set a default pricing tier in azure. But you can use a parameter with the create database query to set the pricing tier.Is there any way to set the default pricing tier in the SF or fill in the service_objective parameter of the create database query?Related topic on microsoft forums: https://social.msdn.microsoft.com/Forums/en-US/fd294936-06fa-4c23-aa11-d0b6836df56e/set-the-default-pricing-tier-for-newly-created-databases?forum=ssdsgetstarted
Hello,i’m configuring Indicium (2021.2) on Windows Server 2019 with IIS 10.I’ve copy the Indicum folder and created the application pool. When I test Indicium page i get the error 500.19 : the page configuration data is invalid
In indicium-Universal there is the possibility to run System-flows in the backgroundSometimes these System flows will run for sometime, (minutes or longer).If we need to stop the system (par example for deployments), I have to be sure there is no System-flow running. Therefor I need the following functions:1. A way to tell Indicum-universal not to start new tasksIs the way to achieve this to run the task: ‘Disable schedule’ ?http://acto-D-upgradetest-EVO.acto.nl/indicium/api/20/disable_schedule Input Parameters: { "project_id": "EVO", "project_vrs_id": "7.05", "gui_appl_id": 26, "process_flow_id": "create_iam_user"}2. A way to find out whether there is still a task running.Can you tell me how to do this?3. A way to tell Indicum-universal to start new tasksIs the way to achieve this to run the task: ‘reset_system_flow_schedule’ ?http://acto-D-upgradetest-EVO.acto.nl/indicium/api/20/reset_system_flow_schedule Input Parameters: { "project_id": "EVO", "project_vrs_id": "7.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.