Search found 1457 matches

by PointsWell
Wed Jan 17, 2024 8:55 am
Forum: General discussion and questions about Aware IM
Topic: Process with DISPLAY QUESTION - how to make it work?
Replies: 4
Views: 11667

Re: Process with DISPLAY QUESTION - how to make it work?

Create a sub process.

Code: Select all

IF question.reply=‘Yes’ THEN SubProcess
The. If user select Yes the subprocess runs. If the user selects No the process comes to an end.
by PointsWell
Wed Jan 10, 2024 4:29 am
Forum: General discussion and questions about Aware IM
Topic: Heres my tip of the day
Replies: 5
Views: 26234

Re: Heres my tip of the day

Ouch, I feel your pain.
by PointsWell
Wed Jan 10, 2024 1:31 am
Forum: General discussion and questions about Aware IM
Topic: Heres my tip of the day
Replies: 5
Views: 26234

Re: Heres my tip of the day

Would be more helpful if you explained why not.
by PointsWell
Mon Jan 08, 2024 10:25 am
Forum: General discussion and questions about Aware IM
Topic: Remove PROTECT when condition no longer holds?
Replies: 8
Views: 47593

Re: Remove PROTECT when condition no longer holds?

You can only protect a BO based on its own attributes. IF BO.Flag=1 THEN READ PROTECT BO.Secret IF BO.psRelatedBO.Flag=1 THEN READ PROTECT BO.Secret Followup question here: This last code snippet indicates I can use a shortcut, is that correct? Will the system be able to pick up if the shortcut att...
by PointsWell
Fri Jan 05, 2024 8:01 am
Forum: General discussion and questions about Aware IM
Topic: Remove PROTECT when condition no longer holds?
Replies: 8
Views: 47593

Re: Remove PROTECT when condition no longer holds?

Be mindful that running PROTECT and READ PROTECT will slow queries down if you have lots of BOs because the query stops working as a set and instead each record gets checked to ensure PROTECT compliance.
by PointsWell
Fri Jan 05, 2024 7:33 am
Forum: General discussion and questions about Aware IM
Topic: Remove PROTECT when condition no longer holds?
Replies: 8
Views: 47593

Re: Remove PROTECT when condition no longer holds?

You can only protect a BO based on its own attributes.

Code: Select all

IF BO.Flag=1 THEN READ PROTECT BO.Secret 

IF BO.psRelatedBO.Flag=1 THEN READ PROTECT BO.Secret
by PointsWell
Wed Jan 03, 2024 6:00 am
Forum: General discussion and questions about Aware IM
Topic: Dear Santa ... Priorities
Replies: 10
Views: 124696

Re: Dear Santa ... Priorities

Thanks, everyone for your thoughts (especially PointsWell) Now... Version 9.0 will be released in late January. Would you rather wait for us to implement some of the things you complain about, or you are happy to wait until the next version (post 9.0)? By the way, we do develop some of Aware IM app...
by PointsWell
Sun Dec 31, 2023 1:20 am
Forum: General discussion and questions about Aware IM
Topic: Dear Santa ... Priorities
Replies: 10
Views: 124696

Re: Dear Santa ... Priorities

nhofkes wrote: Wed Dec 27, 2023 1:08 pm Seems that Santa has already gone home, but I'd like the process for updating/upgrading AIM to be automatic instead of the manual process that it currently is.
This would make things a LOT better.
by PointsWell
Thu Dec 21, 2023 1:38 am
Forum: General discussion and questions about Aware IM
Topic: Dear Santa ... Priorities
Replies: 10
Views: 124696

Dear Santa ... Priorities

So this post seems to have coalesced opinion around a fairly consistent ratio of renewal / enhancement and new features. As Santa is coming and there is a view that there are things that could be more polished what would be your three things that you'd like to see enhanced? Mine would be: Less relia...
by PointsWell
Wed Dec 20, 2023 3:21 am
Forum: General discussion and questions about Aware IM
Topic: Can I call a process from a pick one or more before continue
Replies: 1
Views: 21418

Re: Can I call a process from a pick one or more before continue

Not sure I understand what you mean, but the challenge you face is that the PICK ONE OR MORE will no doubt have been called from a process which you'd have to end before running default processes on the items being selected, otherwise you will end up with do you want to end this process messages. Yo...
by PointsWell
Mon Dec 18, 2023 10:30 pm
Forum: General discussion and questions about Aware IM
Topic: CSS to minimize row height in queries
Replies: 6
Views: 61050

Re: CSS to minimize row height in queries

New version includes a narrow row option baked into the Configurator. I am guessing that means it generates a new css class for those narrow row grids, which means you can just add that into your custom CSS with a modified row height if you need it to be even smaller.
by PointsWell
Mon Dec 18, 2023 10:26 pm
Forum: General discussion and questions about Aware IM
Topic: List of pictures in HTML
Replies: 9
Views: 35838

Re: List of pictures in HTML

You need two forms. An edit form and a view form. Thanks PointsWell, this is the only solution I know now, and the one I would like to avoid. I guess then that embedding a list of pictures in HTML is not feasible? It is possible, you need to make a custom query. See the CRM and Sales Portal example...
by PointsWell
Mon Dec 18, 2023 8:05 am
Forum: General discussion and questions about Aware IM
Topic: Whst am I missing..... 🤪
Replies: 2
Views: 35148

Re: Whst am I missing..... 🤪

Assuming that you've cut and pasted the second FIND expression there's a really odd structure of parentheses Putting it into a formatted open and close structure often helps FIND WagonGRule WHERE ( (WagonGRule.GType='G2' AND Wagon_G_Event.ob_Wagon.G2InitialCreated<>'Yes ') OR (WagonGRule.GType='G48'...
by PointsWell
Sat Dec 16, 2023 1:38 am
Forum: General discussion and questions about Aware IM
Topic: List of pictures in HTML
Replies: 9
Views: 35838

Re: List of pictures in HTML

You need two forms. An edit form and a view form.
by PointsWell
Wed Dec 06, 2023 1:54 am
Forum: General discussion and questions about Aware IM
Topic: Priorities - Speed
Replies: 2
Views: 33138

Priorities - Speed

Bruce made a comment on Speed and Queries in the main thread, answered here to not overwhelm thread. However, there are 2 areas I would love to see improvements. 1. Speed. There are many times I use a stored procedure because queries that join to multiple tables are a little slower in Aware. It coul...