Search found 1476 matches

by BLOMASKY
Wed Dec 06, 2023 7:59 pm
Forum: General discussion and questions about Aware IM
Topic: Priorities
Replies: 10
Views: 141635

Re: Priorities

humm, I am trying to respond to how you CAN use a stored procedure with Aware creating the where clause, but wordpress is giving me an error, "potential unsafe operation". but simply, use Aware the create the Where clause and pass that to the stored procedure

Bruce
by BLOMASKY
Wed Dec 06, 2023 1:33 am
Forum: General discussion and questions about Aware IM
Topic: Priorities
Replies: 10
Views: 141635

Re: Priorities

My 0.02 cents worth. Aware is great! I keep looking to see what other options are available and while there is a plethora of no / low code options, they all have some serious shortcomings compared to Aware. So many require a REST module for database access. So many can help me build the app fast, bu...
by BLOMASKY
Wed Nov 29, 2023 1:45 am
Forum: General discussion and questions about Aware IM
Topic: EXEC_SP in deletion rule?
Replies: 2
Views: 3670

Re: EXEC_SP in deletion rule?

What flavor of SQL are you using? Does it support triggers? If so, you can write a delete trigger.

Bruce
by BLOMASKY
Tue Nov 28, 2023 12:09 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED]Operations with records in View query, but do changes in BO?
Replies: 6
Views: 7619

Re: [SOLVED]Operations with records in View query, but do changes in BO?

I am confused. Is it working right or do you still have a problem.

Also, not sure why you need to access a view vs. an Aware BO with shortcuts to other tables.
by BLOMASKY
Fri Nov 24, 2023 5:34 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED]Operations with records in View query, but do changes in BO?
Replies: 6
Views: 7619

Re: Operations with records in View query, but do changes in BO?

If a query's text view looks something like this: EXEC_SP "readSomeData" RETURNS myBO then the data is view only. You do not have access to the rows when the user clicks on them or in an Operation with Records. When you need a view (or just an SP to create the columns you need displayed, you need to...
by BLOMASKY
Fri Nov 24, 2023 5:28 pm
Forum: Wish List
Topic: Can you change the default output on menu item to NEW TAB
Replies: 3
Views: 26517

Can you change the default output on menu item to NEW TAB

That is what I use 99% of the time. When I forget it replaces what is displayed. Am I the only one who wants this?

Bruce
by BLOMASKY
Thu Nov 23, 2023 10:31 pm
Forum: General discussion and questions about Aware IM
Topic: Next Version Release Date - any news ?
Replies: 9
Views: 143266

Re: Next Version Release Date - any news ?

lets see. how many days until January? Wait, with the international date line, will it be released a day earlier or later than I expect?


Bruce
by BLOMASKY
Fri Nov 10, 2023 12:21 am
Forum: General discussion and questions about Aware IM
Topic: Next Version Release Date - any news ?
Replies: 9
Views: 143266

Re: Next Version Release Date - any news ?

Wonder if they wil tie it to the next Aware conference???

Bruce
by BLOMASKY
Sun Nov 05, 2023 3:37 pm
Forum: General discussion and questions about Aware IM
Topic: Set attribute based on when the user logges in?
Replies: 16
Views: 109805

Re: Set attribute based on when the user logges in?

Aware is very rich with FUNCTIONS. They are at the end of the user guide and there are quite a few handling date and time.

If you want the year try SESSIONVARS.currentYear = YEAR(CURRENT_DATE)


Bruce
by BLOMASKY
Sat Oct 28, 2023 7:42 pm
Forum: Wish List
Topic: FR - Would like a DisplayMessageBox
Replies: 0
Views: 74401

FR - Would like a DisplayMessageBox

Right now we have display message and display question but there is no easy way to style them dynamically. I would love to see a procedure similar to what I had in EXT-JS. Would look like: DisplayMessageBox(Icon Type [Error - Warning or Info], 'Title', titleClass, 'body', bodyClass). Yes, I can crea...
by BLOMASKY
Mon Oct 16, 2023 11:47 pm
Forum: General discussion and questions about Aware IM
Topic: Propietry Database Design change utility
Replies: 10
Views: 59728

Re: Propietry Database Design change utility

I wonder why Aware does not create these automatically, just to be more compatible with outside tools. Thank you for this solution. Anthony At a guess part of the reason is that it would be a very inconsistent implementation and hard to do in a bidirectional way. The management of peer multiple rel...
by BLOMASKY
Sun Oct 15, 2023 3:46 pm
Forum: General discussion and questions about Aware IM
Topic: Propietry Database Design change utility
Replies: 10
Views: 59728

Re: Propietry Database Design change utility

What aware does that is different from many other tools is that foreign keys are not defined in the database. Most reporting tools will, by default, use foreign keys to read data from multiple tables. It is easy, and will not break aware for you to manually create foreign keys. In aware the "many" t...
by BLOMASKY
Tue Oct 03, 2023 6:35 pm
Forum: General discussion and questions about Aware IM
Topic: Aware IM on Twitter Space
Replies: 13
Views: 97499

Re: Aware IM on Twitter Space

Of course, living in FLA, I would be VERY happy to have the next conference in the Sunny State of FL

Bruce
by BLOMASKY
Mon Oct 02, 2023 11:24 pm
Forum: General discussion and questions about Aware IM
Topic: Accessing tables i different schema
Replies: 9
Views: 61070

Re: Accessing tables i different schema

And, of course, there is another way. Assuming that you can modify the external table. Do the following 0). Rename the external table 1). Create a BO in Aware with the name of the external table and all the columns, When you go to test (or publish) it will create an empty table 2). Select all of the...
by BLOMASKY
Mon Oct 02, 2023 11:18 pm
Forum: General discussion and questions about Aware IM
Topic: Accessing tables i different schema
Replies: 9
Views: 61070

Re: Accessing tables i different schema

And, there is always another way. You can create a VIEW in SQL that combines columns from the aware table(s) and the external one. Depending on the columns you need, you can create a BO in aware with all the result columns then when you want to access / view the data you could write a stored procedu...