Search found 100 matches

by nhofkes
Thu Jul 25, 2024 1:43 pm
Forum: General discussion and questions about Aware IM
Topic: Struggling with relating two BOs
Replies: 9
Views: 1102

Re: Struggling with relating two BOs

In your first post, you showed this rule: Screenshot 2024-07-25 152223.png Is that a rule in the BO Jobs? That won't work to adjust what is listed in the combobox. Instead, for the attribute om_JobAreas in Jobs (which I assume has a Combobox as its presentation widget ), you need to set the Record s...
by nhofkes
Mon Jul 22, 2024 9:10 pm
Forum: General discussion and questions about Aware IM
Topic: Callback function in Aware IM?
Replies: 3
Views: 294

Re: Callback function in Aware IM?

Thanks for the suggestions. As to the first: I thought about that, but it would imply duplicating some of the BO rules into the process. With the risk of getting differences between those two rule sets, and increased maintenance. On the second: I already set the rule priorities to make sure that err...
by nhofkes
Mon Jul 22, 2024 7:47 pm
Forum: General discussion and questions about Aware IM
Topic: Update a reference back into BO from Form / vice-versa
Replies: 1
Views: 176

Re: Update a reference back into BO from Form / vice-versa

Is this a suggestion for an improvement or is it already an existing functionality? It seems certainly useful. The other way would also be useful. I have come across situations where I created one or more forms and then changed the properties of the attribute. This immediately results in a prompt th...
by nhofkes
Mon Jul 22, 2024 7:38 pm
Forum: General discussion and questions about Aware IM
Topic: Callback function in Aware IM?
Replies: 3
Views: 294

Callback function in Aware IM?

I have come across the following issue. Ideally this could be solved if I could implement some sort of callback mechanism, similar to what can be done in Javascript. Or maybe there is some other elegant solution. The situation is as follows: I have a BO TransactionLineItem, which can be edited in a ...
by nhofkes
Wed Jul 03, 2024 12:32 pm
Forum: General discussion and questions about Aware IM
Topic: Data Export Problem
Replies: 10
Views: 1985

Re: Data Export Problem

customaware wrote: Tue Jul 02, 2024 10:21 pm Thanx guys.

Resorted to a mixture of Stored Procedure and Python script....

Turned out to be a much better solution and faster.
Mark, can you elaborate on the Python script? On which machine is it running (server or user computer) and what is it doing?
by nhofkes
Tue Jun 25, 2024 7:17 am
Forum: General discussion and questions about Aware IM
Topic: Multiple command buttons in same column
Replies: 1
Views: 730

Re: Multiple command buttons in same column

Do you want to keep the same buttons but have them in one column instead of separate columns? If so, you could remove the borders between the columns using CSS - it would then look as one column with all buttons combined, although technically it consists of three columns. If you want three buttons b...
by nhofkes
Fri Mar 22, 2024 4:44 pm
Forum: General discussion and questions about Aware IM
Topic: Adding records to database of Aware app
Replies: 3
Views: 2438

Re: Adding records to database of Aware app

Have you considered writing the custom process as a SQL Stored Procedure? That does not solve the issue of the ID, BASVERSION and BASTIMESTAMP, but at least you have it running directly in the database so it may be easier and faster than as a .NET application running on the server.
by nhofkes
Mon Mar 18, 2024 10:07 pm
Forum: General discussion and questions about Aware IM
Topic: Configurator does not load most current version
Replies: 5
Views: 2867

Re: Configurator does not load most current version

Aware (both server and configurator) is running on a cloud server (Windows) and I connect through RDP.
by nhofkes
Mon Mar 18, 2024 12:08 pm
Forum: General discussion and questions about Aware IM
Topic: Configurator does not load most current version
Replies: 5
Views: 2867

Re: Configurator does not load most current version

I sometimes have the same issue. See screenshot for an example. The configurator loads the earlier version instead of the latest version that I am working on. It's no big issue because I can load that version manually, but I wonder what the philosophy behind it is.

Screenshot 2024-03-18 130249.png
Screenshot 2024-03-18 130249.png (7.24 KiB) Viewed 2838 times
by nhofkes
Mon Mar 18, 2024 12:01 pm
Forum: General discussion and questions about Aware IM
Topic: Browser refresh
Replies: 3
Views: 2230

Re: Browser refresh

I would assume that if a session is timed out, then the user is actually logged out already at that time? So presumably the fact that you were logged in after pressing F5 suggests that the session had not yet timed out even though you suspected that it might have been too long. In any event, it seem...
by nhofkes
Mon Mar 18, 2024 6:58 am
Forum: Tips and Tricks
Topic: Generic event handler for row operations working with records from Stored Procedure
Replies: 7
Views: 3874

AwareApp.startProcess2('VP_ShowJobWithChat', 'jobs', ObjectID, { newTab: true, id: "JobWithChat", margins: {top: 0, bottom: 0, left: 0, right: 0} }); Since you are deep into this function, This might come in handy in the future. I don’t think it’s in the forum. I had this in an email. The key part ...
by nhofkes
Mon Mar 18, 2024 6:47 am
Forum: Tips and Tricks
Topic: Generic event handler for row operations working with records from Stored Procedure
Replies: 7
Views: 3874

Re: Generic event handler for row operations working with records from Stored Procedure

Haven’t checked in at least 6 months but last I recall, the Alt-V search function doesn’t include this script. (That sure would be nice wouldn’t it, to find all the places “RenderOption” is used, for example) Can u check in V9 ? If not, sending and Email to Vlad would help get this in an update. I ...
by nhofkes
Sat Mar 16, 2024 11:08 pm
Forum: Tips and Tricks
Topic: Generic event handler for row operations working with records from Stored Procedure
Replies: 7
Views: 3874

Re: Generic event handler for row operations working with records from Stored Procedure

The code in the first examples had in the render script some hard-coded parameters for the AwareApp.startProcess2 call (BO name, field containing BO ID and renderOption). I have now made this even more generic by passing the parameters in JSON to the render script. See screenshot for an example: Scr...
by nhofkes
Fri Mar 15, 2024 5:26 pm
Forum: General discussion and questions about Aware IM
Topic: Browser refresh
Replies: 3
Views: 2230

Browser refresh

This is a question about the consequences of a browser refresh - in most browsers this is done by pressing F5 and/or Ctrl-R, sometimes also referred to as 'Reload'. I noticed from the log files (Tomcat log and testing log) that the browser refresh results in fully new login request. It seems that th...
by nhofkes
Fri Mar 15, 2024 11:49 am
Forum: General discussion and questions about Aware IM
Topic: EXEC_SP - Returns data, but not to BO
Replies: 8
Views: 11670

Re: EXEC_SP - Returns data, but not to BO

A possible solution for this issue is described in this post.