Search found 1457 matches

by PointsWell
Sun Mar 24, 2024 1:16 am
Forum: General discussion and questions about Aware IM
Topic: Trigger rule
Replies: 1
Views: 43

Re: Trigger rule

See Rule Properties / Dynamic
by PointsWell
Mon Mar 04, 2024 11:38 pm
Forum: General discussion and questions about Aware IM
Topic: How to avoid error "BO has been changed by another user"
Replies: 8
Views: 292

Re: How to avoid error "BO has been changed by another user"

I think you are going to have difficulty in fixing this due to there being two competing changes to the BO, via the UI and via a rule watching an external relationship. Perhaps put the comment and description into a peer single relationship with the Transaction which would allow the comment to be ch...
by PointsWell
Mon Mar 04, 2024 10:36 pm
Forum: General discussion and questions about Aware IM
Topic: How to avoid error "BO has been changed by another user"
Replies: 8
Views: 292

Re: How to avoid error "BO has been changed by another user"

If the Transaction BO cannot be directly edited by the user after it has been created and the only update that is being made to the BO is via business rules then you do not need to save the form just close it.
by PointsWell
Mon Mar 04, 2024 9:51 pm
Forum: General discussion and questions about Aware IM
Topic: How to avoid error "BO has been changed by another user"
Replies: 8
Views: 292

Re: How to avoid error "BO has been changed by another user"

A few questions: The Transaction BO, does it have elements that are editable after it has been created? I have similar BOs but once the header record is created I only open the form using html references to the attribute not the actual field widgets. The business rules that you have for each Transac...
by PointsWell
Sun Mar 03, 2024 1:16 am
Forum: General discussion and questions about Aware IM
Topic: ERROR: showing preview window
Replies: 4
Views: 317

Re: ERROR: showing preview window

Joben did not refer to Microsoft Edge (the browser) but to Edge WebView2 - see https://developer.microsoft.com/en-us/microsoft-edge/webview2/ It's worth checking if you have the latest version and to update if not. Edge WebView 2 is a Windows requirement. OP is running Ubuntu. Has the index.html fi...
by PointsWell
Wed Feb 28, 2024 10:27 pm
Forum: Wish List
Topic: Peer Multiple reference object
Replies: 3
Views: 198

Re: Peer Multiple reference object

I dont have a question. Just a wish list post. If there are many tiers of managers for example, then many different people should have access to an Account. Instead of having ps_Manager, ps_Owner, ps_Supervisor, having 1 pm_Owner makes it easier to manage access permissions. But now in the PM, i do...
by PointsWell
Wed Feb 21, 2024 11:26 pm
Forum: Problem reports
Topic: missing fontawesome icons in V9
Replies: 4
Views: 295

Re: missing fontawesome icons in V9

far is marked on the Font Awesome web site as a Pro font. https://fontawesome.com/v5/docs/web/reference-icons/ Screenshot 2023-01-06 at 18.25.47.png but on the link that you have included it is marked as a free font https://fontawesome.com/v5/search?q=circle&o=r&m=free So FA have created some confus...
by PointsWell
Fri Feb 16, 2024 11:29 am
Forum: General discussion and questions about Aware IM
Topic: REQIRED only if CREATE/ENTER NEW, not on EDIT?
Replies: 3
Views: 246

Re: REQIRED only if CREATE/ENTER NEW, not on EDIT?

Code: Select all

IF BO IS NEW AND BO.Attribute IS UNDEFINED THEN REPORT ERROR 'Attribute must have a value'
by PointsWell
Wed Feb 14, 2024 8:53 pm
Forum: General discussion and questions about Aware IM
Topic: Protected BO during process + editing
Replies: 7
Views: 411

Re: Protected BO during process + editing

When I edit some BO in a form sometimes I have to call processes : e.g. mult-file upload, or add new reference + use custom implementation. If the user uses one of these functions during editing and then tries to modify another field and then save the form I get the ERROR message "Access to busines...
by PointsWell
Tue Feb 13, 2024 8:28 pm
Forum: General discussion and questions about Aware IM
Topic: Protected BO during process + editing
Replies: 7
Views: 411

Re: Protected BO during process + editing

The error you reported was
"Access to business object MY_BO is denied for Administrator"
You have run the process as "Administrator".

If you want Administrator to be able to run the process against the protected BO then you need to protect EXCEPT FOR Administrator.
by PointsWell
Wed Jan 31, 2024 3:45 am
Forum: General discussion and questions about Aware IM
Topic: Version 9.0 has been released!
Replies: 6
Views: 881

Re: Version 9.0 has been released!

34 You can just drop font awesome pro into the font-awesome-pro-5.6.4 folder, no more fiddling with the CSS file or index.html
35 Dark Mode on MacOS - though colours for the tree need to be more contrasting to the background
by PointsWell
Fri Jan 19, 2024 3:23 am
Forum: General discussion and questions about Aware IM
Topic: Can we have a REPORT WARNING similar to REPORT ERROR
Replies: 12
Views: 32617

Re: Can we have a REPORT WARNING similar to REPORT ERROR

gernotlg wrote: Fri Jan 19, 2024 1:34 am It would be cool, however, if the Display Message function had a few aliases, like Display Warning, for eg. Then the Title of the message box would be, for eg, 'Warning' instead of 'Information'
See MTitle flag of DISPLAY MESSAGE
by PointsWell
Wed Jan 17, 2024 9:31 am
Forum: General discussion and questions about Aware IM
Topic: Process with DISPLAY QUESTION - how to make it work?
Replies: 4
Views: 11567

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

lueu wrote: Wed Jan 17, 2024 9:09 am So maybe I've done something wrong with my question attribute? I put it in my SessionObj, could that a problem?
What do you mean by this?

The code should be

Code: Select all

DISPLAY QUESTION ‘Do you want to continue?’
IF Question.Reply=‘Yes’ THEN SubProcess
What are you putting into SessionObj?