Search found 1638 matches

by kklosson
Thu May 30, 2024 7:55 pm
Forum: General discussion and questions about Aware IM
Topic: Variable TAKE BEST
Replies: 1
Views: 12

Re: Variable TAKE BEST

Maybe try the LIMIT option?

FIND Account WHERE Account.State = 'OPEN' AND Account.Balance > 1000 LIMIT 20,3
by kklosson
Thu May 30, 2024 7:51 pm
Forum: General discussion and questions about Aware IM
Topic: Prevent a dropdown choice from being edited or deleted.
Replies: 11
Views: 111

Re: Prevent a dropdown choice from being edited or deleted.

Hi Harry, In the JobStatus business object, there are update rules and delete rules. In the delete rule, make the following rule: If JobStatus.JobStatus=‘Pending’ Then Report Error ‘Cannot delete Pending status’ This should do it. If not, please DM me and I will be happy to set up a Google meet of s...
by kklosson
Thu May 30, 2024 5:32 pm
Forum: General discussion and questions about Aware IM
Topic: Prevent a dropdown choice from being edited or deleted.
Replies: 11
Views: 111

Re: Prevent a dropdown choice from being edited or deleted.

Oh. Then try a delete business rule on the JobStatus object.

If JobStatus.JobStatus=‘Pending’ Then
Report Error ‘Cannot delete Pending status’
by kklosson
Thu May 30, 2024 12:59 pm
Forum: General discussion and questions about Aware IM
Topic: Prevent a dropdown choice from being edited or deleted.
Replies: 11
Views: 111

Re: Prevent a dropdown choice from being edited or deleted.

Refer to the docs on using Protect statements. I think you need to say:

Protect JobStatus.JobStatus FROM ALL

Or

Protect JobStatus.JobStatus FROM [Access Level]

Or

Protect JobStatus.JobStatus FROM ALL Except [Access Level]
by kklosson
Thu May 30, 2024 5:29 am
Forum: General discussion and questions about Aware IM
Topic: Prevent a dropdown choice from being edited or deleted.
Replies: 11
Views: 111

Re: Prevent a dropdown choice from being edited or deleted.

Your parentheses are out of balance. I believe you can remove the first ( after IF.

The last part should refer to just the business object i. e.,

AND NOT (JobStatus IS NEW)
by kklosson
Wed May 29, 2024 11:36 pm
Forum: General discussion and questions about Aware IM
Topic: Prevent a dropdown choice from being edited or deleted.
Replies: 11
Views: 111

Re: Prevent a dropdown choice from being edited or deleted.

I suggest a Protect Rule

If Objects.Status='Pending' THEN
Protect Object.Status

On the second issue, it's similar:

If Objects.Status='Pending' AND NOT (Object IS NEW) THEN
Protect Object.Status

The second rule is really all you need.
by kklosson
Tue May 21, 2024 8:17 pm
Forum: General discussion and questions about Aware IM
Topic: AwareIM on Snapdragon
Replies: 0
Views: 137

AwareIM on Snapdragon

I'm looking a MS Surface or Surface laptop running an ARM Snapdragon processor. Any idea if AwareIM will run on it or not?
by kklosson
Wed May 15, 2024 6:23 pm
Forum: General discussion and questions about Aware IM
Topic: Using <<bo.attribute>> in notifications
Replies: 1
Views: 136

Re: Using <<bo.attribute>> in notifications

Take a look at the UNSENT_EMAIL folder. I purge that folder all the time. I have no theory that it's causing the issue but it's something you can try.
by kklosson
Mon May 06, 2024 3:01 pm
Forum: General discussion and questions about Aware IM
Topic: How to process records from a filtered query without picking the records
Replies: 0
Views: 151

How to process records from a filtered query without picking the records

I need to give users the ability to filter a query and see the results. There may be several pages in the results. Then I need to process the query results without having them select all on each page of the query. Is there a way to get the current filtered query and use it in a process?
by kklosson
Sat Apr 13, 2024 11:13 pm
Forum: General discussion and questions about Aware IM
Topic: Process Applicable to Multiple in query
Replies: 2
Views: 787

Re: Process Applicable to Multiple in query

Update: Instead of trying to download multiple zipped files and created a single zip file with a file directory and structure.
by kklosson
Sat Apr 13, 2024 6:41 pm
Forum: General discussion and questions about Aware IM
Topic: Process Applicable to Multiple in query
Replies: 2
Views: 787

Process Applicable to Multiple in query

I have a process attached to a query that is "applicable to multiple". The process performs the following for each list item: 1. A subfolder is created for document export. 2. Documents are exported to the subfolder. 2. Files are zipped using 7-Zip command line. 3. The zipped file is downloaded usin...
by kklosson
Fri Apr 12, 2024 11:10 pm
Forum: General discussion and questions about Aware IM
Topic: Can you install a new instance of AIM from an update EXE?
Replies: 5
Views: 881

Re: Can you install a new instance of AIM from an update EXE?

Thanks, but be advised the database is on a different server. So, some of that is moot.
by kklosson
Fri Apr 12, 2024 5:59 pm
Forum: General discussion and questions about Aware IM
Topic: Can you install a new instance of AIM from an update EXE?
Replies: 5
Views: 881

Re: Can you install a new instance of AIM from an update EXE?

Exactly. My issue is that the trial will be V9 and I'm not ready for that. Do you know if Support can provide a v8 trial?
by kklosson
Fri Apr 12, 2024 2:44 pm
Forum: General discussion and questions about Aware IM
Topic: DISPLAY URL stopped working after adding SSL to Aware
Replies: 1
Views: 745

Re: DISPLAY URL stopped working after adding SSL to Aware

I can only say that I use DISPLAY URL for LOGOUT actions, and they work fine under SSL. Do the URLs point to non-SSL sites, and do you have a non-SSL connector defined? Note that I have no idea if that's even necessary. Just spit-balling.