Search found 291 matches

by robleer
Fri Jun 14, 2024 9:17 am
Forum: General discussion and questions about Aware IM
Topic: Query not as popup
Replies: 1
Views: 3889

Query not as popup

Hi I have a process which calls a query as follows: DISPLAY QryPersons This query shows as a popup, but I do want it to be shown in the same panel. How can I do this so it does not show as a popup anymore? Btw: the process is called from another process and not via a button where I can set the outpu...
by robleer
Sat Jun 01, 2024 4:02 pm
Forum: General discussion and questions about Aware IM
Topic: Variable TAKE BEST
Replies: 9
Views: 9948

Re: Variable TAKE BEST

Hi Bob, That does not work also, because I cannot do anything with the records found. This is my example process: FIND ALL AnObject //this BO contains 6 records AnObject.TryNr=0 //set everything to zero EXEC_STRING 'FIND ALL AnObject TAKE BEST ' + SystemSettings.Counter // this selects 3 records AnO...
by robleer
Fri May 31, 2024 4:15 pm
Forum: General discussion and questions about Aware IM
Topic: Variable TAKE BEST
Replies: 9
Views: 9948

Re: Variable TAKE BEST

No, as I wrote, I never know in advance how many records I need.

So therefore it must be variable. Tnx Rob
by robleer
Fri May 31, 2024 4:02 pm
Forum: General discussion and questions about Aware IM
Topic: Variable TAKE BEST
Replies: 9
Views: 9948

Re: Variable TAKE BEST

Nope, that does not work. Any other ideas how to achieve this?
by robleer
Thu May 30, 2024 5:31 pm
Forum: General discussion and questions about Aware IM
Topic: Variable TAKE BEST
Replies: 9
Views: 9948

Variable TAKE BEST

Hi, I need to run a query which have to show a few records. Sometimes 5, sometimes 7 a.s.o.. I never know how many it has to show, so this is variable. I use the 'TAKE BEST' way and try to set a value to make the result variable. Something like: FIND ALL AnObject TAKE BEST SystemSettings.Counter Thi...
by robleer
Thu May 09, 2024 10:46 am
Forum: General discussion and questions about Aware IM
Topic: COMMIT TRANSACTION does not work?
Replies: 2
Views: 2262

COMMIT TRANSACTION does not work?

Hi, I trying to implement the Reorder functionality of a Query and made a process to store the new ordervalues in the database like this: IF ThatCBTQuestion.OrderNr > ThisCBTQuestion.OrderNr then ThatCBTQuestion.OrderNr = ThisCBTQuestion.OrderNr -1 else IF ThatCBTQuestion.OrderNr < ThisCBTQuestion.O...
by robleer
Mon Mar 25, 2024 10:35 am
Forum: General discussion and questions about Aware IM
Topic: Showing icon in a cell of a query
Replies: 2
Views: 3001

Re: Showing icon in a cell of a query

Ah yes, I knew there was a setting, but overlooked the grid settings....

Many thanks!
by robleer
Mon Mar 25, 2024 9:45 am
Forum: General discussion and questions about Aware IM
Topic: Showing icon in a cell of a query
Replies: 2
Views: 3001

Showing icon in a cell of a query

Hi, I have a BO with an attribute 'statusicon'. In the Presentation rules I try to set the right icon when a certain value is entered. When I set a color via a Presentation Rule it works fine. When I run a query, the value in the cell colors like it should. But when I want to show an icon via a Pres...
by robleer
Sat Mar 23, 2024 10:27 pm
Forum: General discussion and questions about Aware IM
Topic: Trigger rule
Replies: 1
Views: 3559

Trigger rule

Hi, I have quite a basic question which I will try to explain with a simple example. I have a BO 'Person' and a BO CarsOfPerson. The BO CarsOfPerson references to the BO Person so I can store the cars of a person. Now, in the BO Person I have an attribute 'NumberOfCars' and I wrote an Update rule wh...
by robleer
Fri Mar 22, 2024 7:43 am
Forum: General discussion and questions about Aware IM
Topic: Adding records to database of Aware app
Replies: 3
Views: 3624

Re: Adding records to database of Aware app

Thanks for you reply.
Ok, I use .Net because I never developed in Java. To much effort to switch to Java for this small solution I want.
by robleer
Thu Mar 21, 2024 9:22 pm
Forum: General discussion and questions about Aware IM
Topic: Adding records to database of Aware app
Replies: 3
Views: 3624

Adding records to database of Aware app

Hi, I have an Aware app which works fine for 95%. But there is a process I unfortunately cannot develop with Aware (has to do with loops and table syncs). Therefore I want to write a .Net application which does the job at databaselevel and which stores some data into the Aware apps databasetables. C...
by robleer
Thu Mar 21, 2024 3:59 pm
Forum: General discussion and questions about Aware IM
Topic: MAX Function on datetime
Replies: 2
Views: 3042

Re: MAX Function on datetime

Ah yes, thats the best way. Thanks !!
by robleer
Thu Mar 21, 2024 3:01 pm
Forum: General discussion and questions about Aware IM
Topic: MAX Function on datetime
Replies: 2
Views: 3042

MAX Function on datetime

Hi, I have a BO with a TimeStamp attribute. Now I want to find the maximum date Example: BO1.DateAttr= MAX ListwithDates.Entrydate WHERE ListwithDates.Entrydate <=CURRENT_TIMESTAMP This does not work and it seems that the MAX function is not working on timestamp attributes? Is there another way to f...
by robleer
Wed Oct 11, 2023 7:03 am
Forum: General discussion and questions about Aware IM
Topic: SQL Server Authentication
Replies: 0
Views: 81175

SQL Server Authentication

Hi,

I like to connect to an external MS SQL Server database.
The authentication is handled by Azure AD.

Can my Aware app connect through Azure AD? I know (and already did that) that is is possible via normal user/password, but via Azure AD?

Tia,

Rob
by robleer
Tue Sep 26, 2023 7:22 am
Forum: General discussion and questions about Aware IM
Topic: INDEX keyword
Replies: 7
Views: 48412

Re: INDEX keyword

@BobK: unfortunately it does not...