Search found 1461 matches

by PointsWell
Thu Oct 12, 2023 10:18 am
Forum: General discussion and questions about Aware IM
Topic: Display name on form based on choice made for another attribute
Replies: 7
Views: 25338

Re: Display name on form based on choice made for another attribute

lueu wrote: Thu Oct 12, 2023 9:30 am I first used a text field with dynamic choises from a query.
Reuse the query on the filter for the peer attribute.

Look for Filter on the bottom right pane in config tool.
by PointsWell
Fri Sep 22, 2023 4:23 am
Forum: General discussion and questions about Aware IM
Topic: INDEX keyword
Replies: 7
Views: 43424

Re: INDEX keyword

Don’t have an answer but I’m intrigued as to how MSSQL allowed columns with reserved words as their name.
by PointsWell
Wed Sep 20, 2023 7:14 am
Forum: General discussion and questions about Aware IM
Topic: Double Scrollbars
Replies: 3
Views: 18378

Re: Double Scrollbars

It is hard to tell from what you've posted.

Check the space allocated to the whole query, it looks too small to show the whole query and the space allocated to the query results is too small to show the query results.
by PointsWell
Wed Sep 20, 2023 7:08 am
Forum: General discussion and questions about Aware IM
Topic: Display name on form based on choice made for another attribute
Replies: 7
Views: 25338

Re: Display name on form based on choice made for another attribute

So, I think I figured out the shortcut path, but I am wondering if I am thinking in the right direction about how to display the correct value in the form based on the ID chosen by the user.. Am I right thinkin I would need a query that fetches the belonging name for the ID chosen? And if so, any t...
by PointsWell
Mon Sep 18, 2023 1:42 am
Forum: General discussion and questions about Aware IM
Topic: FIND ALL, SEARCH_COUNT seems to override READ PROTECT Filter
Replies: 13
Views: 78204

Re: FIND ALL, SEARCH_COUNT seems to override READ PROTECT Filter

The protection is not permanently held against a record. It is evaluated for every object being loaded. AKA it is a massive speed inhibitor as the rule has to be read n times for every query (where n is the number of instances being returned) before deciding whether or not to show the record in the...
by PointsWell
Fri Sep 15, 2023 11:00 pm
Forum: General discussion and questions about Aware IM
Topic: Display name on form based on choice made for another attribute
Replies: 7
Views: 25338

Re: Display name on form based on choice made for another attribute

Do you mean that you have used a text field with choices based on a query? What you probably want is to use a peer relationship instead. You will have full access to all of the attributes of the related BO and can use the field to either show multiple attributes of the referenced BO in the one field...
by PointsWell
Mon Sep 11, 2023 10:40 pm
Forum: General discussion and questions about Aware IM
Topic: I Think I Must Be Going Crazy :-|
Replies: 5
Views: 28928

Re: I Think I Must Be Going Crazy :-|

I have mused over this one before and committed myself to use IF SEARCH_COUNT as the stage gate to my sub processes. I then forget every time. I worked it out because I found processes running and not generating records because when tracked back the search didn't return anything. Yes AIM continues w...
by PointsWell
Mon Sep 11, 2023 7:42 am
Forum: Wish List
Topic: Managing Styles - Forms
Replies: 1
Views: 18201

Re: Managing Styles - Forms

ACDC wrote: Sun Sep 10, 2023 6:16 pm should it not default to a Combo Box ?
I agree, makes no sense to default to grid for one record.
by PointsWell
Fri Sep 08, 2023 6:20 am
Forum: General discussion and questions about Aware IM
Topic: Database latency - all suggestions appreciated, will compensate
Replies: 37
Views: 161704

Re: Database latency - all suggestions appreciated, will compensate

The ideal set up is 3 tier. Webserver -----> AIM -----> DB Server Ports 80, 443 8080 3306 IP Public Private Private Address Webserver can only receive via 80 and 443, webserver can only communicate via 8080 and only to AIM server AIM server only receives on 8080 and can only communicate on 8080 to w...
by PointsWell
Fri Sep 08, 2023 2:23 am
Forum: General discussion and questions about Aware IM
Topic: Database latency - all suggestions appreciated, will compensate
Replies: 37
Views: 161704

Re: Database latency - all suggestions appreciated, will compensate

I don't see the point in running a dedicated DB server within the context of an AwareIM app. It's just another thing that can go wrong, and I've always considered it less secure. Hard disagree on this. Database should always be segregated from App server and even more so if you are running AIM with...
by PointsWell
Sun Sep 03, 2023 10:34 pm
Forum: Problem reports
Topic: Import Action not working
Replies: 4
Views: 24912

Re: Import Action not working

If that is the case then check the text encoding of the database and the csv file (and if it was extracted from a database then the encoding of the source database)
by PointsWell
Sun Sep 03, 2023 6:09 am
Forum: Problem reports
Topic: Import Action not working
Replies: 4
Views: 24912

Re: Import Action not working

What does the CSV file look like when opened in a text editor? Excel hides many sins.
by PointsWell
Fri Sep 01, 2023 4:33 am
Forum: General discussion and questions about Aware IM
Topic: REST - singleton aspect
Replies: 7
Views: 42284

Re: REST - singleton apect

You can build up the API call using objects that are in context.

Eg

Code: Select all

api.made up company.com/apikey?id=<<customer.id>>&name=<<customer.name>>
There’s a tutorial on REST on YouTube using the Weather.com app I built a few years ago.