Search found 1473 matches

by BLOMASKY
Tue Aug 29, 2023 1:33 am
Forum: General discussion and questions about Aware IM
Topic: Database latency - all suggestions appreciated, will compensate
Replies: 37
Views: 124344

Re: Database latency - all suggestions appreciated, will compensate

1st disclaimer I can't even spell mysql. I only use MSSQL so my suggestions might not make any sense but I would: 1). Open whatever tool you use to access the DB and create and run an INSERT statement and see if it takes more than a second. If it is fast then it is NOT a DB issue with the main table...
by BLOMASKY
Wed Aug 16, 2023 10:20 pm
Forum: General discussion and questions about Aware IM
Topic: How to default Image to computed string
Replies: 1
Views: 11437

How to default Image to computed string

I have an entry form where I want to display an image with the name "PreTrip" + 5 character LoginName. Each user has a 5 character login name. i.e. Bruce When the starts to enter a PreTrip record, I want the image (which is stored in the file system) to default and display on the form. It should def...
by BLOMASKY
Sat Jul 22, 2023 12:09 am
Forum: General discussion and questions about Aware IM
Topic: Mac Apple Silicon (M Chips)
Replies: 4
Views: 7506

Re: Mac Apple Silicon (M Chips)

works for me. Have MSQL running under Docker and AIM connecting to it.

Bruce
by BLOMASKY
Sat Jul 15, 2023 6:08 pm
Forum: General discussion and questions about Aware IM
Topic: Find 1 record, Delete 2???
Replies: 5
Views: 9800

Re: Find 1 record, Delete 2???

I thought it would only delete the LAST find.

Thanks

Bruce
by BLOMASKY
Sat Jul 15, 2023 12:53 am
Forum: General discussion and questions about Aware IM
Topic: Find 1 record, Delete 2???
Replies: 5
Views: 9800

Find 1 record, Delete 2???

This is version 8.8 build 3127. The screen shot shows it all. I have a FIND that returns 1 record, then next line is a DELETE and if there are only 2 records in the BO it deletes them both. If I have more then it usually works OK.

Any suggestions?
Screenshot 2023-07-14 at 8.11.40 PM.png
Screenshot 2023-07-14 at 8.11.40 PM.png (420.91 KiB) Viewed 9800 times
by BLOMASKY
Fri Jun 30, 2023 7:41 pm
Forum: General discussion and questions about Aware IM
Topic: Stored Procedure EXEC_SP: Internal error. Error converting data type nvarchar to int.
Replies: 4
Views: 5278

Re: Stored Procedure EXEC_SP: Internal error. Error converting data type nvarchar to int.

Umm, you did NOT declare your @INCREMENT as OUT. Thats they only way SQL server knows which variable(s) to return. Also, since this is a stored procedure, there are NO delare statements for the params. just the variable names after the procedure name and before the AS. i.e. CREATE PROCEDURE Foobar @...
by BLOMASKY
Fri Jun 30, 2023 7:38 pm
Forum: General discussion and questions about Aware IM
Topic: Why does this schedule not run
Replies: 6
Views: 13367

Re: Why does this schedule not run

I always thought dates had to be in ''. Learn something new each day. T

hanks Mark
by BLOMASKY
Tue Jun 27, 2023 8:58 pm
Forum: General discussion and questions about Aware IM
Topic: Why does this schedule not run
Replies: 6
Views: 13367

Re: Why does this schedule not run

Still does not work:

if CURRENT_HOUR = 8 AND CURRENT_MINUTE = 0
AND CURRENT_DATE > '01/01/2022'

then EmailUnitAdjustmentReport
by BLOMASKY
Tue Jun 27, 2023 12:16 am
Forum: General discussion and questions about Aware IM
Topic: Why does this schedule not run
Replies: 6
Views: 13367

Re: Why does this schedule not run

Will add the CURRENT_DATE and see if that fixes it. This is the ONLY scheduled rule I have so not a timing issue.

Bruce
by BLOMASKY
Thu Jun 22, 2023 9:24 pm
Forum: General discussion and questions about Aware IM
Topic: Why does this schedule not run
Replies: 6
Views: 13367

Why does this schedule not run

if CURRENT_HOUR = 8 AND CURRENT_MINUTE = 0 then EmailUnitAdjustmentReport I also tried: if CURRENT_TIME='08:00' then EmailUnitAdjustmentReport This is in the Scheduling section. If I run the process from the menu it works fine! (and no, I am not using Aware's email setup so that is not the problem)....
by BLOMASKY
Tue May 23, 2023 10:07 pm
Forum: General discussion and questions about Aware IM
Topic: how can I access an attribute in LoggedInRegularUser in Javascript
Replies: 2
Views: 2244

how can I access an attribute in LoggedInRegularUser in Javascript

Need to get the access level in a querys render script.

thanks

bruce
by BLOMASKY
Wed Apr 26, 2023 10:32 pm
Forum: General discussion and questions about Aware IM
Topic: Extracting time from timestamp attributes
Replies: 8
Views: 5641

Re: Extracting time from timestamp attributes

Perhaps this is what you want?

IF COUNT YourBO WHERE (HOUR(YourBO.datetimefield) * 60 + MINUTES (YourBO.datetimefield) = HOUR(inputdatetimefield) * 60 + MINUTES(inputDateTimeField) > 0 THEN REPORT ERROR 'dup time'
by BLOMASKY
Tue Apr 25, 2023 6:33 pm
Forum: General discussion and questions about Aware IM
Topic: Extracting time from timestamp attributes
Replies: 8
Views: 5641

Re: Extracting time from timestamp attributes

IF HOURS(timestamp) * 60 + MINUTES(timestamp) = HOURS(input timestamp) * 60 + MINUTES (input timestamp) THEN
DISPLAY MESSAGE 'this is a dup!'
by BLOMASKY
Thu Mar 30, 2023 7:13 pm
Forum: General discussion and questions about Aware IM
Topic: Other icons besides font awesome
Replies: 2
Views: 4204

Other icons besides font awesome

Spending a couple of days up North with Roger Ross and he mentioned someone is using other font groups besides fontawesome. Wonder what other ones are being used and the pluses of them.

Thanks

Bruce