Search found 1374 matches

by PointsWell
Fri May 26, 2023 5:22 am
Forum: General discussion and questions about Aware IM
Topic: Cloning an app to same server after migrating from MySQL to MariaDB
Replies: 5
Views: 61

Re: Cloning an app to same server after migrating from MySQL to MariaDB

There's insufficient information in this to help. At a guess there is a mismatch between the limitations between MySQL and MariaDB. Whatever tool you are using should have more detailed import logs that indicate which row the import is failing on. That will help you locate the record and then you ca...
by PointsWell
Wed May 24, 2023 9:35 pm
Forum: Problem reports
Topic: HTML Window size
Replies: 2
Views: 54

Re: HTML Window size

aware_support wrote: Wed May 24, 2023 8:48 am Where is this window?
This is the window that appears for an HTML attribute when you press the Show HTML button on the editor window.
by PointsWell
Wed May 24, 2023 5:01 am
Forum: General discussion and questions about Aware IM
Topic: Display Buttons at Bottom of Form
Replies: 8
Views: 93

Re: Display Buttons at Bottom of Form

Instead of bottom of the form place buttons in bottom panel and they will stay in place when you define the form height.

If you don’t want the box around it use CSS to remove
by PointsWell
Tue May 09, 2023 4:32 am
Forum: General discussion and questions about Aware IM
Topic: AwareIM as a data migration tool
Replies: 3
Views: 104

Re: AwareIM as a data migration tool

Pentaho has an ETL tool and the community version is free. It will allow you to graphically build your ETL process.

AwareIM is not the tool for data migration
by PointsWell
Fri May 05, 2023 3:12 am
Forum: General discussion and questions about Aware IM
Topic: Locale - date formatting
Replies: 7
Views: 265

Re: Locale - date formatting

joben wrote: Thu May 04, 2023 6:26 am
I don't know when this was introduced, but I have completely missed it 8)
https://www.awareim.com/dokuwiki/doku.p ... provements

V8.8 build 3123
by PointsWell
Tue May 02, 2023 11:03 pm
Forum: General discussion and questions about Aware IM
Topic: Extracting time from timestamp attributes
Replies: 8
Views: 290

Re: Extracting time from timestamp attributes

The date part could be set to whatever you want it to be. This thread is somewhat confusing, to me at least. It might be more helpful to provide more context to the problem by describing the business problem rather than just the technology problem. If the user isn't choosing a date then does the att...
by PointsWell
Mon Apr 24, 2023 12:17 am
Forum: General discussion and questions about Aware IM
Topic: Exchange Rate API Return Data
Replies: 4
Views: 167

Re: Exchange Rate API Return Data

Cool. I looked at that for a minute a while ago will check it out again
by PointsWell
Sun Apr 23, 2023 11:47 pm
Forum: General discussion and questions about Aware IM
Topic: Exchange Rate API Return Data
Replies: 4
Views: 167

Re: Exchange Rate API Return Data

Out of interest what API are you using?
by PointsWell
Fri Apr 21, 2023 2:36 am
Forum: General discussion and questions about Aware IM
Topic: Send an invoice by email
Replies: 5
Views: 247

Re: Send an invoice by email

On the one hand, sending Email in aware is easy/straightforward - Ask Vlad. On the other hand, its complex with lots of twists and turns that you're no where ready to deal with as a newbie. ... OK, good luck with emails... it's Easy!!! This post contains some helpful comments despite its tone. Here...
by PointsWell
Fri Apr 21, 2023 2:07 am
Forum: Problem reports
Topic: Forgot password link not working
Replies: 7
Views: 269

Re: Forgot password link not working

Thanks Mark, I've never applied the time to consider the workflow for this.

I'd add that best practice is not to say that the login / email cannot be found, but instead generally state if there's a matching email address then the new password will be sent - this prevents fishing for logins.
by PointsWell
Tue Apr 18, 2023 10:49 pm
Forum: Problem reports
Topic: Unable to get to login page at address ending in logon.jsp
Replies: 3
Views: 131

Re: Unable to get to login page at address ending in logon.jsp

LogonAdmin.jsp allows the user to select the BSV (Domain) to login to. Logon.jsp logs into a default BSV (aka Domain), which suggests that you have not included the BSV in the login url ("domain parameter is not specified") Reading the additions to the help page for the new JSPs they seem a bit conf...
by PointsWell
Fri Apr 14, 2023 11:28 pm
Forum: General discussion and questions about Aware IM
Topic: Version 9 Wish List
Replies: 29
Views: 1208

Re: Version 9 Wish List

Rem wrote: Fri Apr 14, 2023 2:14 pm Import of Excel files, not just CSV. We have many customer who needs this.
Newer versions of Apache POI (part of the AIM code set) allow for the reading of Excel files.
by PointsWell
Tue Apr 11, 2023 12:35 pm
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 449

Re: FIND instances of a referred object

Use the data model tool and diagram the relationship between RegularUser, Project and Landfill and post the image. If you have multiple BOs that are reference attributes to multiple other BOs you're going to find it hard to build these queries. Another tip is that using attributes set as multiple re...
by PointsWell
Tue Apr 04, 2023 11:16 am
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 449

Re: FIND instances of a referred object

If ThisRegularUser.Landfill IS UNDEFINED then FIND Project WHERE (Project IN ThisRegularUser.Project) FIND Landfill WHERE (Landfill IN ThisProject.Landfill OR Landfill IN OtherProject.Landfill) INSERT Landfill IN RegularUser.Landfill Just looking at the FIND Landfill statement, why are you using Th...