Search found 2405 matches

by customaware
Tue May 09, 2023 1:39 am
Forum: General discussion and questions about Aware IM
Topic: AwareIM as a data migration tool
Replies: 3
Views: 2894

Re: AwareIM as a data migration tool

This is the best data migration tool I have ever found. It is just brilliant.

The ESF Data Migration Toolkit.

https://www.dbsofts.com/
by customaware
Wed May 03, 2023 11:51 pm
Forum: Problem reports
Topic: The import of data in test works but it no longer works when we publish and the application becomes Current
Replies: 5
Views: 17452

Re: The import of data in test works but it no longer works when we publish and the application becomes Current

How do you Import?
Did you create an Import Template?
If so, did you Export your Import Template from your test machine and Import it onto your Server?
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: 3170

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: 16406

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: 25089

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: 3119

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: 3119

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: 3119

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: 16406

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: 2423

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: 13111

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: 3179

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: 4479

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: 7941

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: 7941

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?