Search found 2418 matches

by customaware
Tue May 02, 2023 8:01 am
Forum: General discussion and questions about Aware IM
Topic: Compare new record to existing record
Replies: 3
Views: 3763

Re: Compare new record to existing record

Have a look at the Customer BO in the CRM Sample App.... In the Business Object Rules you will see this.... If EXISTS SystemUser WHERE (SystemUser.LoginName=ThisCustomer.LoginName AND SystemUser.ID<>ThisCustomer.ID) Then REPORT ERROR 'User with this login name already exists. Please choose a differe...
by customaware
Sat Apr 29, 2023 1:11 am
Forum: Problem reports
Topic: Forgot password link not working
Replies: 7
Views: 22993

Re: Forgot password link not working

Well done Max. Glad you got it working. 👍
by customaware
Mon Apr 24, 2023 11:13 pm
Forum: General discussion and questions about Aware IM
Topic: Import Document from URL
Replies: 20
Views: 28239

Re: Import Document from URL

I haven't tried this but, just wondering if could it be done in javascript? For example..... const downloadLink = document.createElement('a'); downloadLink.href = 'http://www.mydomain.com/samples/mypdf.pdf'; downloadLink.download = 'mypdf.pdf'; downloadLink.textContent = 'Download PDF'; document.bod...
by customaware
Sun Apr 23, 2023 11:51 pm
Forum: General discussion and questions about Aware IM
Topic: Exchange Rate API Return Data
Replies: 4
Views: 3942

Re: Exchange Rate API Return Data

I have used Mondor for years. Started right back in http SOAP days...

Thought it time to upgrade....

Currency API provides a Free plan for up to 300 calls per month. I have less than 10 Currencies can do a call every night
and still be under the Free threshold.

https://currencyapi.com/
by customaware
Sun Apr 23, 2023 10:23 am
Forum: General discussion and questions about Aware IM
Topic: Exchange Rate API Return Data
Replies: 4
Views: 3942

Re: Exchange Rate API Return Data

Worked it out....

Currency.Value=PARSE_JSON(RESTCurrencyResponse.Reply,'$.data.' + Currency.Currency + '.value')

Where Currency.Currency is the Currency Code... ie USD
by customaware
Sun Apr 23, 2023 5:53 am
Forum: General discussion and questions about Aware IM
Topic: Exchange Rate API Return Data
Replies: 4
Views: 3942

Exchange Rate API Return Data

I am trying a new Exchange Rate API Service. It returns data in this format..... { "meta":{ "last_updated_at":"2023-04-22T23:59:59Z" }, "data":{ "AED":{ "code":"AED","value":4.075241 }, "CAD":{ "code":"CAD","value":1.517868}, "USD":{ "code":"USD","value":1.109754} } } I guess there are two ways to p...
by customaware
Fri Apr 21, 2023 1:08 am
Forum: Problem reports
Topic: Forgot password link not working
Replies: 7
Views: 22993

Re: Forgot password link not working

ForgottenPassword process - Handles Forgotten Password Checked. Rule 1: ENTER NEW ForgottenPassword (is a Non Persisted BO called ForgottenPassword with Attributes....LoginName (50) and NewPassword (20) ) The Form only shows the LoginName Rule 2: IF NOT(EXISTS SystemUser WHERE (SystemUser.LoginName=...
by customaware
Wed Apr 19, 2023 1:38 pm
Forum: General discussion and questions about Aware IM
Topic: Upcloud email problems?
Replies: 3
Views: 2989

Re: Upcloud email problems?

Drop me an email privately and will make a time to call to discuss
by customaware
Tue Apr 18, 2023 9:07 am
Forum: Tips and Tricks
Topic: Auto Create SystemSettings with DQ
Replies: 2
Views: 18401

Auto Create SystemSettings with DQ

On the odd occasion we need to automatically create the SystemSettings BO usually when building a new server. ALL of our Apps have a DQ Attribute that holds the " character. But has always been a PITA to create SystemSettings with it populated with this Attribute set because you cannot have a " in a...
by customaware
Tue Apr 18, 2023 8:56 am
Forum: General discussion and questions about Aware IM
Topic: System Lock Error
Replies: 6
Views: 4176

Re: System Lock Error

Certainly does not look like an Aware IM error. Never seen that before. Are you hosting internally or on a Cloud Server? On the very rarest of occasions one of our users cannot log in when windows is updating something in the background. So we put off all Windows updates to a time when the least amo...
by customaware
Mon Apr 17, 2023 11:58 pm
Forum: General discussion and questions about Aware IM
Topic: Other icons besides font awesome
Replies: 2
Views: 5820

Re: Other icons besides font awesome

Tried Font Awesome V6 and could not get it to work either.

Would be great to have a mechanism to plug and play and bit more with this stuff.
by customaware
Fri Apr 14, 2023 2:18 am
Forum: General discussion and questions about Aware IM
Topic: BASE 64 Image string to Aware Picture
Replies: 6
Views: 10559

Re: BASE 64 Image string to Aware Picture

Well, looks like it can be done in Python.

While I already call some Python code in my app but am not sure how to run a Python script from Aware that takes parameters.

Any ideas would be really appreciated please.
by customaware
Thu Apr 13, 2023 4:55 pm
Forum: General discussion and questions about Aware IM
Topic: BASE 64 Image string to Aware Picture
Replies: 6
Views: 10559

BASE 64 Image string to Aware Picture

I have a BASE 64 image string being sent to my app via a REST API.

Can anyone suggest the easiest way to take that string and convert it to an Aware IM Picture Attribute please?
by customaware
Tue Apr 11, 2023 2:56 pm
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 17627

Re: FIND instances of a referred object

Not sure it this is what you are looking for but.... There is a single RegularUser (Admin) It Creates 3 Projects... Project A, Project B and Project C Project A and project B are Owned by RegularUser. Project C is not Owned by RegularUser It Creates 3 Landfills that are Owned by RegularUser... Landf...
by customaware
Sat Apr 01, 2023 5:48 am
Forum: General discussion and questions about Aware IM
Topic: Resize Handles for Image in HTML Editor
Replies: 0
Views: 73900

Resize Handles for Image in HTML Editor

Looking at the Kendo Editor, there is a config option for resizable content. Currently in the Aware HTML Editor, you can drop an image onto the page but you cannot resize it. Not sure if that config option would make a difference but would love to know a way to allow the images to be resized. Any id...