Search found 1191 matches

by Rennur
Fri Feb 08, 2019 12:38 am
Forum: General discussion and questions about Aware IM
Topic: POLL: Are you comfortable with Failure Rules?
Replies: 6
Views: 7941

Re: POLL: Are you comfortable with Failure Rules?

I have failure rule set up in some processes just in case the process has been cancelled by the user. One example would be in the area of user permissions where you have a 'Enable Editing' yes/no attribute controlled by process. If the user has the permission to enable editing, then the process woul...
by Rennur
Fri Feb 01, 2019 1:48 am
Forum: General discussion and questions about Aware IM
Topic: Sub Query Brain Fade
Replies: 8
Views: 9578

Re: Sub Query Brain Fade

Form experience, there are limitations / bugs referencing groups in complex query parameters, and I have never managed to fix the "on clause" issue when encountered.
by Rennur
Wed Jan 23, 2019 11:04 pm
Forum: General discussion and questions about Aware IM
Topic: Native mobile, with Push notification
Replies: 2
Views: 4715

Re: Native mobile, with Push notification

You can integrate real-time notifications with Pushover https://pushover.net.

Cheers,
by Rennur
Fri Nov 30, 2018 5:30 am
Forum: General discussion and questions about Aware IM
Topic: What’s the trick to build a JSON string
Replies: 40
Views: 74779

Re: What’s the trick to build a JSON string

aware_support wrote: There is a LOT of parameters you may want to provide to the function that converts a business object to JSON. This is because there are quite a few subtleties in how a JSON string can be generated from an Aware IM record (or records) - how empty values are encoded, how names are...
by Rennur
Tue Nov 06, 2018 3:12 am
Forum: General discussion and questions about Aware IM
Topic: Run Process from a Button
Replies: 4
Views: 7031

Re: Run Process from a Button

I did something similar in v6.0 which works in both the label and description sections. Change name MyProcess and try: <a class="btn btn-default btn-xs" href="javascript: void(0);" onClick="AwareApp.startProcessFromForm ('MyProcess','main', this, false)" title="Start My Process"><i class="fa fa-plus...
by Rennur
Tue Oct 23, 2018 7:09 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED-ISH] Complex Query Help Needed
Replies: 12
Views: 15880

Re: Complex Query Help Needed

Change psRelatedProprietor in the CODE below to the proper BO Name . TRY: FIND ContactGroupContracting WHERE ContactGroupContracting.obTenant=LoggedInRegularUser.obTenant AND ContactGroupContracting.psRoleSub.obRole.Code=1000 AND (ContactGroupContracting.psRoleSub.Code=1200 OR EXISTS Contact1001 WHE...
by Rennur
Fri Oct 05, 2018 4:41 am
Forum: General discussion and questions about Aware IM
Topic: Remove photo from db
Replies: 1
Views: 4111

Re: Remove photo from db

Could be case sensitive, try:

Customer.Photo=UNDEFINED
by Rennur
Sun Sep 23, 2018 11:28 pm
Forum: General discussion and questions about Aware IM
Topic: 8.1 user image on a PDF (and not a fuzzy one)
Replies: 6
Views: 9542

Re: 8.1 user image on a PDF (and not a fuzzy one)

IMAGE _DATA function is available from version 6.0 onward. It seems to be omitted from the documentation.
by Rennur
Mon Sep 17, 2018 1:27 am
Forum: General discussion and questions about Aware IM
Topic: 8.1 user image on a PDF (and not a fuzzy one)
Replies: 6
Views: 9542

Re: 8.1 user image on a PDF (and not a fuzzy one)

On the user end, specify the min and max image size.
Validate with IMAGE_WIDTH & IMAGE_HEIGHT functions.
Use the SCALE_IMAGE to scale the image to the right size.
Use the IMAGE_DATA function to store the BASE64 version of the image. <img src="<<BO.Base64IMG>>" (I use this in my HTML documents).
by Rennur
Mon Sep 17, 2018 12:56 am
Forum: General discussion and questions about Aware IM
Topic: EXPORT Action seems to have a bug
Replies: 2
Views: 4272

Re: EXPORT Action seems to have a bug

Oops, wrong function, I was looking at the EXPORT DOCUMENT function.
by Rennur
Mon Sep 17, 2018 12:49 am
Forum: General discussion and questions about Aware IM
Topic: EXPORT Action seems to have a bug
Replies: 2
Views: 4272

Re: EXPORT Action seems to have a bug

I've noticed that your example does not include the TO FILE or TO FOLDER as per User Guide, only TO.
by Rennur
Mon Sep 10, 2018 12:58 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] Complex Filter Using a m-n Table
Replies: 11
Views: 15294

Re: Complex Filter Using a m-n Table

Maybe try using EXISTS in the query:

Code: Select all

FIND Support WHERE NOT(EXISTS Relationship WHERE (Client IN Relationship.Clients AND EXISTS Support WHERE (Support IN Relationship.TeamMember)))
by Rennur
Thu Sep 06, 2018 2:00 am
Forum: General discussion and questions about Aware IM
Topic: Displaying a PDF from a process
Replies: 2
Views: 4457

Re: Displaying a PDF from a process

Does the DISPLAY DOCUMENT function not work with file-system document type attributes?

DISPLAY DOCUMENT BO.FilePdf IN WINDOW
by Rennur
Fri Aug 31, 2018 3:42 am
Forum: General discussion and questions about Aware IM
Topic: What’s the trick to build a JSON string
Replies: 40
Views: 74779

Re: What’s the trick to build a JSON string

I was testing exposing a REST service in version 6.0 and consuming the service in 8.1.
by Rennur
Mon Aug 20, 2018 4:10 am
Forum: General discussion and questions about Aware IM
Topic: Start Control Panel automatically
Replies: 8
Views: 9465

Re: Start Control Panel automatically

Does not start automatically in the background..
What do you mean by "in the background"?
Does the server not require login credentials on reboot before it runs anything else?