Search found 1480 matches

by BLOMASKY
Tue Feb 28, 2023 6:58 pm
Forum: General discussion and questions about Aware IM
Topic: From a Grid, Expand Rows issue - CLOSE Button on Form
Replies: 4
Views: 1534

Re: From a Grid, Expand Rows issue - CLOSE Button on Form

Screenshot 2023-02-28 at 1.57.10 PM.png
Screenshot 2023-02-28 at 1.57.10 PM.png (110.26 KiB) Viewed 1478 times
Where is asks: "Expansion of rows"


Bruce
by BLOMASKY
Sun Feb 26, 2023 9:21 pm
Forum: General discussion and questions about Aware IM
Topic: For those few using Aware on OS X and need SQL Server Locally
Replies: 3
Views: 2641

For those few using Aware on OS X and need SQL Server Locally

I have finally figured out the best way to run SQL Server on a mac (either Intel or M1 based) in Docker and have Aware connect to it. This configuration keeps all the permanent data outside of the Docker container (so easy to copy backups of databases to / from the local file system. Happy to share ...
by BLOMASKY
Fri Feb 10, 2023 9:16 pm
Forum: General discussion and questions about Aware IM
Topic: EXEC_SCRIPT from a Rule will not run.
Replies: 7
Views: 1958

Re: EXEC_SCRIPT from a Rule will not run.

I could be wrong (usually am) but I thought the ONLY user interaction a rule can have is a REPORT ERROR. Anything else has to be in a process.

So, why not have this line of code call a process to run the EXEC_SCRIPT? Yea, I know thats 1 extra line of code and an additional process....

Bruce
by BLOMASKY
Wed Feb 08, 2023 5:28 pm
Forum: General discussion and questions about Aware IM
Topic: SQL Question - Views
Replies: 2
Views: 1285

Re: SQL Question - Views

I know you want to keep the SQL all in your Aware app, but let me suggest that is a mistake. 1st, you mention that if fields change your SQL might break, but if fields change your aware program will compile fine but break when the user trys to run the SP. 2nd, Since it is not a stored procedure, it ...
by BLOMASKY
Thu Feb 02, 2023 8:46 pm
Forum: General discussion and questions about Aware IM
Topic: Reverse Proxy scenario: 2 Aware servers, same SQL server? Will this work
Replies: 11
Views: 4093

Re: Reverse Proxy scenario: 2 Aware servers, same SQL server? Will this work

While I have not tried this. I would assume the install folder would be different for each aware server (one points to Aware and AwareTest, other points to Aware2 and Aware2Test) and, assuming that the BSV that they share have an external database (data and datatest) there should be no problems with...
by BLOMASKY
Thu Feb 02, 2023 8:00 pm
Forum: General discussion and questions about Aware IM
Topic: Version 9 Wish List
Replies: 29
Views: 45562

Re: Version 9 - Web Components ???

The same way I can't just pop a Sencha component into Aware since it is based on the Kendu framework. I can't pop a Kendu component into a react framework. However, web components are standalone. Yes, they are just HTML, css (and perhaps some JS). but they exist on their own and do not need a framew...
by BLOMASKY
Tue Jan 31, 2023 7:07 pm
Forum: General discussion and questions about Aware IM
Topic: Version 9 Wish List
Replies: 29
Views: 45562

Re: Version 9 - Web Components ???

The only plus is that Kendu is a framework that contains components (some very nice ones!). Shoelace is framework agnostic components. So, for instance, if I have a text field, the ability to point to a shoelace input field and use some of the attributes to customize the the behavior would be nice. ...
by BLOMASKY
Sun Jan 29, 2023 11:18 pm
Forum: General discussion and questions about Aware IM
Topic: Difference between logon.jsp and logon.html
Replies: 2
Views: 1330

Difference between logon.jsp and logon.html

The shiny new version has 2 ways of logging on. the OLD way (.html) and the NEW way (.jsp). Besides a slightly different look, what are the advantages / differences between the two?

Thanks

Bruce
by BLOMASKY
Sun Jan 29, 2023 6:19 pm
Forum: General discussion and questions about Aware IM
Topic: Time Math -- Easy in SQL what about in Aware?
Replies: 5
Views: 4157

Re: Time Math -- Easy in SQL what about in Aware?

BobK wrote: Fri Jan 27, 2023 8:16 pm Out of curiosity, how would you do that in SQL?

Update BO set Arrival = DateADD(mi, dateDiff(mi, oldPickup, pickup), Arrival)

Bruce
by BLOMASKY
Fri Jan 27, 2023 5:55 pm
Forum: General discussion and questions about Aware IM
Topic: Time Math -- Easy in SQL what about in Aware?
Replies: 5
Views: 4157

Time Math -- Easy in SQL what about in Aware?

I have 2 attributes, Pickup and Arrival. Both are timestamp fields. They have BOTH been computed previously. For example, pickup 9:00 AM, arrival 9:45AM. Now the user wants to enter a new pickup time and I need to change the arrival time by the DELTA of the original pickup time and the new one. So i...
by BLOMASKY
Fri Jan 27, 2023 5:51 pm
Forum: General discussion and questions about Aware IM
Topic: Too many versions of a Business Space?
Replies: 10
Views: 3635

Re: Too many versions of a Business Space?

It is good that you are getting that error. Otherwise you might want to play with an old version where some BOs / attributes were NOT defined and if Aware deleted them, you would lose some data! Aware is unique in the fact as you make changes that affect the underlying database structure, when you g...
by BLOMASKY
Wed Jan 25, 2023 5:50 pm
Forum: General discussion and questions about Aware IM
Topic: Version 9 Wish List
Replies: 29
Views: 45562

Version 9 Wish List

Since I purchased fontAwesome, they sent me an email telling me about their integration with shoelace. Shoelace is a bunch of web components that are framework agnostic. so it got me thinking... How hard would it be for the next version (9?) to integrate with web components. So, for instance, if I a...
by BLOMASKY
Mon Jan 09, 2023 7:46 pm
Forum: General discussion and questions about Aware IM
Topic: Do you use CHANGED Prefix
Replies: 5
Views: 1891

Re: Do you use CHANGED Prefix

pg 117 of the user guide has an example of the CHANGED prefix. It looks like: If Transaction FROM Account.Transactions WAS CHANGED AND ChangedTransaction.State WAS CHANGED TO ‘Approved’ Then Account.Balance = SUM FinancialTransaction.Amount WHERE (FinancialTransaction IN Account.Transactions AND Fin...
by BLOMASKY
Fri Jan 06, 2023 8:00 pm
Forum: General discussion and questions about Aware IM
Topic: Query SQL Form
Replies: 1
Views: 1257

Re: Query SQL Form

not sure exactally what you are looking for:

Do you want to have a query where the code looks like
EXEC_SP "QueryToReturnAwareBOData" RETURN myBO


If so, and myBO is an external DB that you created as an external db table, then that is easy.

Bruce
by BLOMASKY
Tue Dec 27, 2022 5:51 pm
Forum: General discussion and questions about Aware IM
Topic: Aware IM on Twitter Space
Replies: 13
Views: 107222

Re: Aware IM on Twitter Space

ah ha! Twitter spaces is NOT in the browser. Have to use a mobile device. GOT IT!

Bruce