Search found 94 matches

by nhofkes
Wed Oct 06, 2021 8:45 pm
Forum: Tips and Tricks
Topic: Session Variables Object and NULL
Replies: 1
Views: 16855

Re: Session Variables Object and NULL

I found another issue with the non-persisted session variables object, which may or may not be related to the post by PointsWell. You can't use WAS CHANGED to check whether any attribute of the SV has been changed by the user - neither in the update rules of the SV object nor in a process that is ca...
by nhofkes
Wed Oct 06, 2021 11:58 am
Forum: General discussion and questions about Aware IM
Topic: Rule Debugger
Replies: 9
Views: 13279

Re: Rule Debugger

Looks very good! I am certainly looking forward to this feature and expect it will save a lot of time compared to the current 'debugging' by going through the log.
by nhofkes
Thu Sep 30, 2021 4:20 pm
Forum: Tips and Tricks
Topic: Worked Example of Stored Proc
Replies: 7
Views: 26967

Re: Worked Example of Stored Proc

Thanks for the updated SQL procedure. I am intending to implement something similar. If I read your posts correctly, you are not storing the output of the SP into a persisted object in the database, but rather returning the output directly to the call from the query in AIM? In your earlier post, you...
by nhofkes
Mon Sep 27, 2021 8:42 pm
Forum: General discussion and questions about Aware IM
Topic: Readable database password in BASServer.props
Replies: 1
Views: 2335

Readable database password in BASServer.props

I noticed that the BASServer.props contains the password for the database root user in a readable form (i.e. non-encrypted). This means that anyone with access to that file can see the password and therefore access the database. Is this how it is supposed to be? To me it seems a potential security i...
by nhofkes
Mon Sep 27, 2021 4:41 pm
Forum: Problem reports
Topic: SessionVars not working as should
Replies: 6
Views: 8901

Re: SessionVars not working as should

I have found earlier that the in memory session object (which by definition is not persisted) cannot be used for multiple reference attributes (1-n). It seems that the additional cross reference tables that are used for those attributes are not stored in the session object, therefore the reference a...
by nhofkes
Fri Sep 24, 2021 1:11 pm
Forum: General discussion and questions about Aware IM
Topic: Server update removing custom themes
Replies: 8
Views: 5755

Re: Server update removing custom themes

An update should never touch anything in the AwareIM/Tomcat/webapps/AwareIM/aware_kendo/Custom directory So all your custom CSS/JSS files should be there In my current install (Windows, builds 2921 and 2938), there is no "AwareIM/Tomcat/webapps/AwareIM/aware_kendo/Custom" directory. However, there ...
by nhofkes
Fri Sep 24, 2021 8:11 am
Forum: General discussion and questions about Aware IM
Topic: Width of Question
Replies: 9
Views: 12875

Re: Width of Question

Presumably, as a work around, it would also be possible to use a (modal) form instead of DISPLAY MESSAGE etc?
That may be overkill for a short message, but it gives greater control over the size of the window without having to resort to Javascript in the message content.
by nhofkes
Mon Sep 20, 2021 1:06 pm
Forum: Problem reports
Topic: How to easily export all records
Replies: 2
Views: 4972

Re: How to easily export all records

I believe that it depends on the locale settings on the client computer whether Excel correctly imports the CSV file. Unsurprisingly, the CSV file uses a comma as delimiter. This works fine if the OS Regional Settings on the client computer also has a comma as list separator (which Excel then uses),...
by nhofkes
Wed Apr 07, 2021 6:50 am
Forum: General discussion and questions about Aware IM
Topic: Are we at risk of needing to pay Oracle for Java fees?
Replies: 27
Views: 37405

Re: Are we at risk of needing to pay Oracle for Java fees?

Does that mean (a) that tools.jar is not included with version 8.6, or (b) that it is no longer necessary to remove or delete it when changing to OpenJDK?
by nhofkes
Tue Apr 06, 2021 10:56 am
Forum: General discussion and questions about Aware IM
Topic: Pivot grid (Pivot table) on roadmap?
Replies: 42
Views: 92845

Re: Pivot grid (Pivot table) on roadmap?

Jaymer, I tried your example. Looks very good!
You wrote
a pivot using ag-grid.com that I just put into an Aware form
Can you explain how you did this?
by nhofkes
Tue Apr 06, 2021 10:45 am
Forum: General discussion and questions about Aware IM
Topic: Are we at risk of needing to pay Oracle for Java fees?
Replies: 27
Views: 37405

Re: Are we at risk of needing to pay Oracle for Java fees?

It's explained on page 18 and 19 of the Installation Guide for version 8.5. I found upgrading to Open JDK really simple. As pointed out before by Support, you need to rename or delete the old tools.jar files. I provided a PowerShell script to do that automatically in this post (but I guess that only...
by nhofkes
Mon Mar 01, 2021 11:59 am
Forum: General discussion and questions about Aware IM
Topic: How can I refresh a Presentation?
Replies: 8
Views: 4879

Re: How can I refresh a Presentation?

Jaymer,
When you are able to do something 'on-click', such as Start Process or view another Presentation, can't you use one of those possibilities to create a refresh link (or button) to refresh your presentation?
by nhofkes
Tue Dec 15, 2020 9:13 pm
Forum: General discussion and questions about Aware IM
Topic: multi select filter "contain"
Replies: 9
Views: 8231

Re: multi select filter "contain"

did it config.config.filter="contains"; now the search in the multi select is great I think that in many cases you do not have to set this 'contains' option through the initialization script, you can also set it in the configurator when you have the filters shown as a separate row or in the combina...
by nhofkes
Tue Dec 15, 2020 8:47 pm
Forum: General discussion and questions about Aware IM
Topic: Need popup note area.
Replies: 2
Views: 2252

Re: Need popup note area.

I think you can achieve this by creating a separate BO for the popup note that is a reference attribute of the main BO to which the note belongs. This separate 'Note' BO will have a text area attribute large enough for your notes. You can then open it as a modeless window from the main BO and then e...
by nhofkes
Thu Dec 10, 2020 1:36 pm
Forum: General discussion and questions about Aware IM
Topic: ANALYSIS: Aware behind the scenes. Context. Passing BOs.
Replies: 7
Views: 10205

Re: ANALYSIS: Aware behind the scenes. Context. Passing BOs.

the inability to "BREAK" out of a Rule doesn't help. In my complex Process in this post, a BREAK would help once the TRUE "IF" branch was found, hopefully saving time by not having to execute further down the Process. When I simplified my Process to 3 separate Rules, the BREAK would exit and preven...