OK Vlad. sent you 3 of them, will send more screen shots as I run into them.
Bruce
Search found 1490 matches
- Wed Oct 30, 2024 3:05 pm
- Forum: General discussion and questions about Aware IM
- Topic: Why are Mac users 2nd class citizens
- Replies: 4
- Views: 2588
- Thu Oct 24, 2024 1:00 pm
- Forum: General discussion and questions about Aware IM
- Topic: PARSE_JSON Help
- Replies: 3
- Views: 2309
PARSE_JSON Help
I have a rest call that returns: {"rows returned":3}
I need the # and I am can not figure out how to access it. My last tries were PARSE_JSON(returnObj, '$[rows returned]') but I get a blank
Thanks
Bruce
I need the # and I am can not figure out how to access it. My last tries were PARSE_JSON(returnObj, '$[rows returned]') but I get a blank
Thanks
Bruce
- Tue Oct 22, 2024 1:31 am
- Forum: General discussion and questions about Aware IM
- Topic: Why are Mac users 2nd class citizens
- Replies: 4
- Views: 2588
Why are Mac users 2nd class citizens
Perhaps I am one of the few MAC users (Server is on windows, but I use a mac for my development). There are so many bugs with using the mac that have not been fixed, I am wondering if it is becuase there are so few users of OSX. Many dialog boxes don't fit on the screen and some buttons are hidden, ...
- Thu Oct 17, 2024 2:13 pm
- Forum: General discussion and questions about Aware IM
- Topic: Dispaly summary of selected records
- Replies: 5
- Views: 2978
Re: Dispaly summary of selected records
I do that by having a "selected" field in the BO. Then I have a rule called whenever the "selected" is changed to summarize the data and storing it in LoggedInRegularUser and have a VP with the LoggedInRegularUser data fields displayed (and updated) below the BO's query.
Does this make sense?
Bruce
Does this make sense?
Bruce
- Fri Jul 19, 2024 9:05 pm
- Forum: General discussion and questions about Aware IM
- Topic: Struggling with relating two BOs
- Replies: 9
- Views: 15998
Re: Struggling with relating two BOs
Did you create the custom query for the combo box where you filter on the parent (job)?
Bruce
Bruce
- Tue Jul 16, 2024 7:09 pm
- Forum: Problem reports
- Topic: Too many versions
- Replies: 8
- Views: 20149
Re: Too many versions
I would suggest that you export your current version whenever changes are made. Then it is easy to "import" if one of your changes breaks something. I have exports from almost every day that I work on a BSV. I name them with the MMDD at the end of the bsv name, to make it easy to find the right day ...
- Thu Jul 04, 2024 12:01 am
- Forum: General discussion and questions about Aware IM
- Topic: Struggling with relating two BOs
- Replies: 9
- Views: 15998
Re: Struggling with relating two BOs
Just spit balling here.... But if I understand, each Job has 0-N Job areas. So when you create a new job, you will create new job areas that are owned by the job. if this is true, then you need to have 2 features: 1). a button that will create a new job area and have its parent the job 2). a combo b...
- Tue Jul 02, 2024 6:59 pm
- Forum: General discussion and questions about Aware IM
- Topic: Aware IM Developers Conference Content Saved My Day
- Replies: 1
- Views: 7241
Re: Aware IM Developers Conference Content Saved My Day
Repeat after me....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
.....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
Stored Procedures are my friend.....
.....
- Tue Jul 02, 2024 6:57 pm
- Forum: General discussion and questions about Aware IM
- Topic: Data Export Problem
- Replies: 10
- Views: 26883
Re: Data Export Problem
I am pretty sure Jaymer has a solution to export. Reach out to him.
Bruce
Bruce
- Wed Jun 26, 2024 2:02 pm
- Forum: General discussion and questions about Aware IM
- Topic: Active Processes stuck
- Replies: 5
- Views: 16481
Re: Active Processes stuck
When I am ready to restart the server, I always run the following sql script. "delete from Aware.dbo.EXECUTION_CONTEXTS"
Execution_Contexts always has 20-60 old thingies hanging around.
Bruce
Execution_Contexts always has 20-60 old thingies hanging around.
Bruce
- Wed Jun 05, 2024 11:12 pm
- Forum: General discussion and questions about Aware IM
- Topic: Does anyone allow users to Export PDF from Grid?
- Replies: 3
- Views: 10516
Re: Does anyone allow users to Export PDF from Grid?
Yes I do, and also export CSV. (If my bad memory is correct, when exporting PDF it only exports CURRENT page. Exporting CSV exports the entire view). Ideally would have a default name pop up that could be changed.
- Wed Jun 05, 2024 12:45 am
- Forum: General discussion and questions about Aware IM
- Topic: Calling Stored Procedure from BO Rules
- Replies: 4
- Views: 13040
Re: Calling Stored Procedure from BO Rules
Mark, generally I need a commit transaction BEFORE (not after) I call a stored procedure. That way any data that is either entered (or computed by a rule) in Aware are saved to the database. Since I do that before calling the SP, any aware processing afterwards will (re)read the appropriate records ...
- Sun Jun 02, 2024 10:21 pm
- Forum: General discussion and questions about Aware IM
- Topic: Variable TAKE BEST
- Replies: 9
- Views: 22698
Re: Variable TAKE BEST
Can you get a sequence in the SQL table? (Can easily be done by a stored procedure). Then, you can have a filter like:
FIND BO WHERE BO.seq <= SessionVars.noRecs
Bruce
FIND BO WHERE BO.seq <= SessionVars.noRecs
Bruce
- Thu May 30, 2024 3:05 pm
- Forum: General discussion and questions about Aware IM
- Topic: Anyone work with Postgres?
- Replies: 0
- Views: 9607
Anyone work with Postgres?
I am having some issues with it. I am connecting to Supabase, a web based version of postgres and anytime I have to create a database it seems to fail. If the DB exists (I created one for Aware and AwareTest) then it seems happier, but when trying to create a new business space it errors out on crea...
- Fri May 10, 2024 12:11 am
- Forum: General discussion and questions about Aware IM
- Topic: COMMIT TRANSACTION does not work?
- Replies: 2
- Views: 4696
Re: COMMIT TRANSACTION does not work?
I use a lot of stored procedures and use COMMIT TRANSACTION a lot. It seems to work fine for me. You do know, after you commit, and then call a stored procedure, you have to RE-READ the record to get any changes.
Bruce
Bruce