Search found 2409 matches

by customaware
Mon Jun 12, 2023 10:10 pm
Forum: General discussion and questions about Aware IM
Topic: Aware IM name file visible in the path.
Replies: 3
Views: 6329

Re: Aware IM name file visible in the path.

Before update completely backup folder C:\AwareIM *************************************************************************************** After update 1. Rename C:\AwareIM\Tomcat\webapps\AwareIM directory to C:\AwareIM\Tomcat\webapps\CustomFolderName 2. Open the file web.xml located in the AwareIM/T...
by customaware
Thu Jun 08, 2023 2:55 am
Forum: General discussion and questions about Aware IM
Topic: Possible to change yes/no column text?
Replies: 5
Views: 3934

Re: Possible to change yes/no column text?

And.... if you you add fa-2X to your css string they look heaps better...

fas fa-check fa-2X greenbutton
fas fa-times fa-2x redbutton

where greenbutton and redbutton are css classes in your css file
by customaware
Mon May 22, 2023 11:01 pm
Forum: General discussion and questions about Aware IM
Topic: Exporting Calendar PDF to server
Replies: 2
Views: 1435

Re: Exporting Calendar PDF to server

You can do this.... EXPORT DOCUMENT 'EXPENSE CLAIM' TO FOLDER 'C:\expense'+ExpenseClaim.ExpenseClaimNumber+'\' I use similar for Expense Claims. I export an Expense Claim and then all of the Receipts to a unique folder. Then I use PDF Combine Pro X to merge the Expense Claim PDF and all of the Recei...
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: 3076

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

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

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

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

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

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

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

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

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

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

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...