Questions, discussions, news and updates regarding the Thinkwise Platform.
Recently active
Hello! I'm trying to implement a chart in Universal. Unfortunately I get the message: 'This chart type is not supported'. In the Windows gui it does show the charts. Is there an overview somewhere of which chart types are supported?
Hello, I have implemented a drag and drop task with a template code .We have followed the instructions to be on the last version : Universal GUI 2023.2.12 BETA and configurate the config.json file. At this moment we are having a forbidden sign when we are trying to select a row from the source table ,also when we try to drop it to the receiving table .How can we fix that ? What is the cause of this issues ? Forbidden action Thank you in advanced!
Hello!Is it possible to add a hashed, salt and algorithm for a password directly from an http connector?I have a hashed password process action. and a connector with a PATCH to update the following things. It doesn't seem to work and i get a 500 error. In postman it says that it is created, but it is not. Could you please help me handle this?
Hello! I am trying to insert an authentication type IAM user in the iam with a POST method in an http connector and it gives me a 403 error. If I try to insert an RDBMS user with the same http connector it is working. If I am adding the user by hand or from the ssms it is also working. Is it something from how the iam is built? Because i am using an admin account with all the permissions granted.
Do you need to use t1 with the calculated column type? I have the following calculated field code : btw_percentage / 100 + 1.00However when I tried to add t1. to it. The database gave an error. But the code as it is written above doesn't work.Does anyone know how to handle this?
Hello,How can you make drag and drop functionality work in Universal GUI? Thank you !
How to solve this this error message? Invalid signature
In the release notes for 2023.12 b1.0 is stated that the import wizard is being built. Can you give any information in how this wizard will work exactly? We're very eager to try this.Can we for example configure that the imported data contains column/data translations/ids or specify the used tab page in the excel? Just as is already built in the Windows gui?Thanks.
My treeview menu currently looks like this: https://i.imgur.com/AG7hmRh.pngYou can see that icons with a subicon do not change color. I’ve double-checked that they are indeed SVG files: https://i.imgur.com/kzGTxQb.pngEven when I target them very specifically using CSS, they won’t change color: https://i.imgur.com/6bpL4YC.png Is there anybody who knows why this is happening and/or how to fix this? Thanks!(For some reason I was unable to upload images/files, that’s why there are imgur links)
Hi I have a task in my application that takes a long time to complete and times out in the universal GUI. Since it was part of a process flow I assumed it had to wait for the task to finish to send the user to the result of the task. Now we have decided to turn it into a background task that does not send the user anywhere and is not contained in a process flow. We switched the setting await result to “no” but it seems the universal GUI does not pick up this setting since it still opens the loading window and times out after some time. Setting in SFTask is pendingNow the only thing I can still think of is that it is a task as a menu item could that be blocking the await result option? Or does await result not work in Universal GUI if so are there any workaround i can use?
We are using OpenID connect with User provisioning enabled. When a new (previously unknown) user logs on with OpenID Connect, a user record is created and based on the template, automatically assigned to a guest group. This guest group has a startup object with a task that initiates a registration process. The user has to add some additional information and submit this information to be validated by a backoffice system. The backoffice system validates and if valid, removes the user from the quest group and assigns the user to a member group. The user can now logon and gets the menu and functionality of a member.What happens however is that the provisioning functionality not only assigns the defined user group on creation of a new user, but also on any subsequent log on. So the guest group, while deleted through the API, is assigned again and with that the registration flow is started as well.My question: is there a way to have a process started only once based on provisioning? An addit
Hi, We generate some XML files for a financial interface. These XML files are generated by a Scheduled Process flow. On a daily basis this averages on about 40 files. These files are saved in a Azure File storage. However, our client has a shared disk in the company network, where a File Handler is scanning a set folder. When a XML is in this folder, it is uploaded to the Financial Interface, Currently, the end user has to download these XML files manually, and place them in the shared drive.We want to automate this process, so that the end-user has no longer to this. These files cannot be zipped, but must be 40 separate files written to this shared drive. What would be the best way to achieve this? Any advice in the right direction is very welcome. Regards, Blommetje
IntroductionThe Software Factory provides a menu item where it is possible to access screens related to a large part of your model, named “Model content” (formerly “Full model”).Because these screens are not shown in the context of a particular process, all available data in the screen is shown. This results in a lot of tab pages that display a lot of information.These screens are also present on another place in the SF, where the are optimized for the process they are part of. Think of:Data model > Tables: when you want to create a new table. At this stage you don't need to worry about the UI aspects of the table. User interface > Screen types: when you want to change a screen type. This screen contains a handy designer which can be used to visualize what your screen will look like. Processes > Tasks: when you want to introduce a variant for a task. The screen type here is set up hierarchically, which means there will be enough space to work with when a variant is introduced.
As developer we are given some data model table types, namely making a Table, a View or a Snapshot. In the documentation it only says "In a snapshot, just as in a view, data from one or more tables can be combined, though in a snapshot this data is actually saved." I am unsure how to use it and do not really have the time to experiment with it. Is there someone that can show me what a Snapshot is, what it does, how to set it up (in depth preferably) and what advantages (and maybe disadvantages) it has? Thanks in advance!
Hi,We'd like to use the following Thinkstore solution: But like the last comment in that closed topic says: could you please update this solution to get rid of said errors? It seems it hasn't been updated since that topic's been made.It's a really nice piece of functionality, that we'd love to see working straight out of the box.Thanks :)
Hi. I have flow that downloads a file from the internet HTTP connector, which I subsequently want to unzip. This doesn't work.. the return JSON value stays NULL and there is not errorlog in indicium.. how do I find out what is going wrong? Ps. I would be great if you update the docs with an example output JSON.. It just says that a JSON is returned not what it looks like so we know how to process it.
In this example I have 2 screens both showing data from the same view:A BWhen I have both screens open and I change the data thru screen B I need to do an manual F5 when I go back to screen A. Is it possible to have it automagically perform a F5 on the reactivating of the screen?I can use “auto update” but I dislike the fact that it is not realtime unless I use for example 1 second. But that causes a lot of sql requests.Any suggestions?
Hi,In a windows gui we cannot have a subflow (some API calls which can take a few seconds) in a manually started processflow, so we have made a systemflow starting this subflow based on a queue table.From the client, we have a task starting a processflow that inserts a record in the queue table, and then system flow will execute. During the execution, I want to disable the task-button and when the systemflow is finished I want to refresh the table so the user sees the new information.In the queue we have a processed bit, so it’s possible the processflow progress. When the processed bit is set, we can finish the processflow. Using waitfor delay seems to freeze the whole application.Is it possible to pause or temporarily loop a processflow, without freezing the app?
Hello, we're using material filled icons with an subicon from icons8 to add form headers to our form. If i would zoom in to 400%, the icon is displayed correctly:However, when i zoom out to 300%, the icon is scaled weird and this goes on the further you zoom out.The image look correctly on all zoom levels when we download it. Is this an universal bug?
After the upgrade to 2023.2. The message “Model folder specification has been phased out and is no longer available” appears at the ‘validate definition’ step, with a reference to ‘c: temp’ . however that file path is no longer in use anywhere in the model.
Hi everyone,We're working an a screen showing a venue that belongs to a topic. There are more venues for the main topic. So, there are speakers for the topic, and the speaker is selected with a venue for that topic. So, the speaker is linked at the topic. The speaker has more topics he can speak about. However, we want to be able to add more topics to this venue. Each speaker confirms the topic at a later date if he or she is speaking about a topic at that venue.We can't seem to get a list of topics (linked to the speaker) for the venue, so that we can select 1 or more topics to add to that venue. How would we best get this done?So, we have topics, and topics have available speakers. Each speaker has one or more topics. We select a venue, and go into that venue. We then want to have a list of topics that are linked to the speaker of the venue. The venue is now our t1. Can we make a view of possible topics (linked to the speaker) in a variant of venue that contains all topics for the sp
Hello !We have this error message while trying to do the merge . We have digged a little bit in the task_execute_merge_session procedure ,but we can not figure out where the problem is coming from.error msgHow can we fix this problem in order to proceed with finalizing the merge?Very much appreciated! Kind regards,Ema
All the standard indicium API's are expecting JSON and have JSON as output, also most of the 3rd party API's use JSON, therefore I think it would be useful to have some different JSON approaches and examples at one place, please feel free to add your own in the comments.Creating JSONWhen creating a simple JSON statement it would look something like this, this is without data from a table, but for example data you get in a process flow for 1 record and need to pass it to a JSON API.--Having an example variabledeclare @json nvarchar(max)set @json = ( select 0 as Value_1 ,1 as Value_2 ,1 as Value_3 ,1 as Value_4 ,0 as Value_5 ,0 as Value_6 ,0 as Value_7 for json path, without_array_wrapper)The output would look like this:{ "Value_1": 0, "Value_2": 1, "Value_3": 1, "Value_4": 1, "Value_5": 0, "Value_6": 0, "Value_7": 0}When you leave out the "without_array_wrapper” you will treat the set as an array and the result would look like this,
I want to use the new Toolbar component but in version 2023.2.11 b1.0 sizing of icons still doesn't work. The topic below says it has been solved. In which version is this solved?
Sometimes some of our users have the problem process flows running from Universal don't work anymore. Logged in on their system (a scanner running Android) using a different username it works, running the process flow on a different system using their account name doesn't start the process flow. In the Indicium log no messages turn up.How can such a situation occur, is there a way we can find out what's the problem and how can we fix this? Sometimes resyncing the application to IAM works, last time this happened we needed to dis- and enable the application to get the process flows running for these users. Of cause, this is not the right solution.
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.