Search found 1462 matches

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: 11
Views: 110475

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: 3607

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: 4427

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: 6779

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: 3853

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: 3853

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: 3805

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: 21755

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: 17373

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: 43462

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: 17101

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: 17101

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...
by PointsWell
Mon Apr 03, 2023 10:33 pm
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 17101

Re: FIND instances of a referred object

edvwruhs wrote: Mon Apr 03, 2023 1:44 pm I see, I tried it without the if-condition but I get the same result :(
What does the log file say?

When the FINDs run, how many Project and Landfill BOs does the log say that it has found?

What does the log report is happening when the INSERT statement is called?
by PointsWell
Mon Apr 03, 2023 10:40 am
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 17101

Re: FIND instances of a referred object

Your rule is triggered by

Code: Select all

If ThisRegularUser.Landfill IS UNDEFINED
And you said
"Landfills", both are multiple allowed and mapped to the RegularUser
If RegularUser.Landfill is a peer multiple relationship, then the trigger for your rule is going to give you unpredictable results.