Ask a question or have a conversation about the Thinkwise Platform
Recently active
Hi,i am trying to make an overview of articles that are made up of other articles.I am showing different levels of the article when searched for an articlenumber.This all works.But when i search for an article, i get these results: I would like, to only see 1 article when the article number is the same. i tried this with doing a distinct, but this is not possible in the prefilter as far as i know.Is there a way to do a distinct in a prefilter? or is there another way i can get this working. Here also is the code that i use in my prefilters, we got 8 levels, all 8 levels got their own prefilter.t1.article_number_2 = ( SELECT TOP 1 pt.searched_article_number FROM prefilter_table pt WHERE pt.usr_id = dbo.tsf_user() ORDER BY pt.search_id DESC)OR t1.article_number_3 = ( SELECT TOP 1 pt.searched_article_number FROM prefilter_table pt WHERE pt.usr_id = dbo.tsf_user() ORDER BY pt.search_id DESC)OR t1.article_number_4 = ( SELECT TOP 1 pt.searched_article_number FROM prefilter_table pt
I am trying to simulate different roles for testing purposes. I did the following:In Runtime configuration, edit one or make one of your own and set “Simulate role” to the role you want to test Select this runtime configuration when starting your appI get the following message: Project version X.XX is not valid for this application. Please contact your system administrator. Whenever I remove the role in my runtime configuration, I can start the app normally.How do I simulate my created roles correctly?
Hi,My question:How can I deploy to another environment? Currently I have 2 databases: Development & Testing and I have multiple versions in Development, but only 1 in Testing:Project versionsNow, I want to deploy my changes made in 1.66 to the test database. However, when I “Generate definition" I get a popup saying that it generated its definition based on > 1.65. When I proceed, it does not create an upgrade script in the “Execute source code” step.How can I let the Software Factory know that I want to generate its definition based on the previous project in the test environment?
When running TSF with GUI version 2023.1.17 I get this in screen types - design: Is this a known issue?
Since version 2023.1.16, users experience different behavior in grids when editing records.The new behavior is desirable for some screens but not for all screens.By adding the new extended property "GridEditUpdateUsingRefreshOption" and setting it to "Yes", the system seems to work as before, except that the users can now unwantedly getting the message "The saved data can not be displayed on the screen" when updating a row and an extra mouse click is required to make this message disappear. Some users complain a lot about this, because they have to click away the message many times a day.I have not been able to get it to work the way I want with the Refresh options on the table. Has anyone else run into this problem yet?
Hi, Sometimes I check the Model Compare to see what happened in our development time. Yesterday we had a little bug on 1 specific screen. To debug this and only merges where executed, changes should be minor. So I expected something minor. To find all the changes between previous Model Version and current deployed, I tried finding an Compare option in SF. I expected something where I select my MAIN branch and use a Task like 'Compare branch MAIN; X Model Version against Y Model version’ - to see what changes where actually deployed. But I can only compare between different Branches. I thought this used to be possible before, but I can't find it. In a way it also feels nice to check what features/fixes have been merged, so I can generate a release note fairly easy. Is there a quick way to check all the changes in 1 branch, between two points in time? If not, it might be useful? Thanks!Alexander
Hi,i am trying to make a process-flow that contains a variable to use in a prefilter. I can't find anything in the docs or on the community about this.Is this possible to do? And if not, what is an other option i can try?
Hi, We have a project where multiple versions have been deployed already. We cleaned up the database names and did all the adjustments in the runtime configuration to ensure the right database is used. Everything is working fine (SF & application), except I am not able to do a new deploy. After establishing a connection to the correct database, the following scripts are automatically checked:Screenshot of deployment scriptsI cannot un-check the db script, where it tries to create the database. Obviously, the database already exists and I want to perform an upgrade rather than creating a new database.Anyone able to help?
HiI'm struggling with the deployment folder. When you define it in the IAM it references my pc. However Indicium is running in the cloud in a container. So it's being saved at a location inside the container.Can I run the container with a mapped directory for example /opt/indicium/deployment that can be mounted to /home/conainter-user/deployment/, is something already foreseen in the container package? With regards to the destination, is OneDrive / SharePoint on the backlog as a destination? Now I don't really have a way to obtain my deployment data.
In some cases, we like to hide the toolbar.Is there any way to hide the toolbar for a detail screen? Like the example below. And in any case, the buttons with the three dots would be invisible in case they don't have any options to choose from
Hi,I have a chart in my windowns GUI. But in my universal GUI in gives this error:I dont know what to do with this error message.Can anyone help me?
Can a DevExpress report size be dynamically created based on parameters?
We are trying to disable the ShowMessageNoCurrent-RowInParent extended property. But the message still shows. What do we need to do in order to make this work
How is this possible:
Hello all,We find that using icons is a very nice way to visually help the user navigate through the tool and understand the actions they will perform. We use the icons for example in the task buttons, made available in the icons tab. thee are all light weight svgs, but as you can see in the screenshot, they are a major reason for delaying the opening of the document, up to 10 seconds. Any ideas what the reason could be and what we can do to improve this performance?
Hi,Response times (ping) are sometimes quite slow and we are noticing with the Universal GUI that it creates some odd/unwanted behaviour. Especially when it comes to defaults, layouts and contexts.. they appear to get loaded at last. Which means that tasks, tabs and als fields that get disabled via procedures stay open between loading entity and the loading and application of the def/lay/ctx procedures. A similar thing happens after executing a task. During execution the task is greyed out.. but short after it gets enabled again. Due to the sometimes high latency the refresh is not instant. The user gets the option to click the task again. What are the options here to deal with this? Can we somehow group entity loading including procedures that influence it's behaviour?
Hey all,i have 2 filters, one gives me only records where the activity_kind is equal to 10 and the other gives me records where activity_kind is not equal to 10This is how it is configured in my default table:In this case it should only give me records where activity_kind is not equal to 10This is how it is configured in my variant:In this case it should only give me records where activity_kind is equal to 10When i have everything configured like above^ everything works fine..However i want them on hidden, but when i put the show_not_parcel_delivery_kind on on hidden in my default table it doesn’t give me any data in my variant.Does the state of the filter carry over to the variant if it’s on on hidden? Any idea what the issue could be?Thanks!
Hi!I am working on a link task where the user wants to ‘import’ data from one table to anotherFor example: Purchase orders can be generated through a purchase needs table. The purchase order table consists of purchase order lines. The user also wants the possibility to import purchase needs into an existing purchase order. I set up the following process flows:Process Flow 1The user clicks on the link task located in the purchase order line. The purchase_order_id is one of the task parameters. The purchase needs table is opened (as a floating document) with the necessary active filters. Only active purchase needs with the same supplier as the purchase order’s supplier are shown. A hidden column ‘link_purchase_order_id’ in the purchase_need is filled with the purchase_order_id. This is done in a decision process action.Process flow 2The user must be able to select multiple rows in the purchase need table. A decision performs an update and empties the ‘link_purchase_order_id’ of all unse
Hi,i'm trying to create a pie-chart with values to see the amount of days it takes for a certain department to process a request.I want to show this pie-chart in the details tab of the request.When i try to get the chart working with some test values, it only shows this:what can i do to fix this?
Hi Team,We have created the time field in universal to get the time from the user in Universal. But in that field Time-picker is not popping out properly while clicking on that time-picker icon. Is there anything we need to do or the functionality itself in thinkwise is like that? I have attached the screenshot with this query.
I want to hide a delete button that’s available in a variant. When i disable it in the variant permissions, it doesn’t disable in the universal but it is disabled in the windows GUI.
BugPresumably from the latest SF version in which we no longer talk about project versions but model versions, starting branches directly against the SF all results in one and the same application definition.The mouse-over shows the application_id instead of branch_idmodel_id = 'NIVERPLAST',branch_id = 'ADDITIONAL_COSTS',branch_description = N'1687',WorkaroundTo make it workable, I use application icons as a workaround and add the application IDs to the description.Workaround using icons and branch_description Desired solutionPresumably the model_id is now displayed all "Niverplast” desirable would be that the branch name (or another recognizable column) is visible. Another bug?Setting the sorting in the list bar is not replicated to the sorting of applications in the tile menu.Sorting order - List bar menuSorting order - Tile menu
If i enter values for Label or Field width in Subjects>Settings no changes seem to happen (If i enter Field height this do change it for every column for that table). If I enter values for Label or Field width per cell via Subject>Components>Form the width change does happen. Although then, if a field is added later, this does not have the same properties of course because it reverts to the defaul values. Is this a possible bug? Am i missing something?
Hi I'm working on adding the hyperlinks for WhatsApp and Viber to an html field in a page in Universal GUI. The links for both messenger apps open installed application in the computer.but I'm not so successful with Viber. for some reason universal GUI removes the href property of the html <a> elementprobably because it doesnt start with https heres a sample. WhatsApp (Works)Link: <a href="https://api.whatsapp.com/send?phone=0900000000">WhatsApp</a>Viber (Dont Work)Link: <a href="viber://chat?number=0900000000" target="_blank" rel="noopener noreferrer">Viber</a> Note1: the viber link works if you search for the link viber://chat?number=0900000000 Note2: when I inspected the element in developer mode in the browser it seems it is removing the href property of the <a> tag in html of universal page. I used an HTML(property) domain to render the html link tag Is there are rule on how hyperlinks are displayed in Universal? Is there a way to make this work
Our organization uses order folders to log different kinds of order reports. For example: order confirmations, shipping orders, certification etc.I have created a system flow which receives information through a HTTP connector (from a process flow). Six (DevExpress) reports are generated this way and eventually written into an order folder. This works fine for three reports except for two documents which contain scripting and one report with a watermark. The report is saved into the correct folder, but it’s empty. As if no ID was forwarded to the generate report process action.The document with the watermark was eventually saved successfully when we deleted the watermark, but this is a rather inconvenient ‘solution’. Is there a known issue with generation and writing reports which contain scripting and watermarks? Process flow with the HTTP connector System flow for generating, writing and moving a report.
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.