Search found 197 matches

by UnionSystems
Sat Sep 07, 2019 9:24 pm
Forum: General discussion and questions about Aware IM
Topic: Query Column "Display format" Examples
Replies: 1
Views: 3169

Query Column "Display format" Examples

What can be put into a Query column "Display format" field. For example we have a 10 character Plain Text column that stores phone numbers like 0212341234 and we would like to display them in a query column as 02 1234 1234
by UnionSystems
Wed Sep 04, 2019 10:45 pm
Forum: General discussion and questions about Aware IM
Topic: REST Service Response Issue
Replies: 0
Views: 4254

REST Service Response Issue

We have a REST service publishing JSON from AwareIM and being read by Javascript on the published AwareIM App to provide a nice autocomplete lookup. Only problem we have is when our query results in more than 1 result the returned JSON is embedded in a "response" array but when result count is 1 or ...
by UnionSystems
Tue Sep 03, 2019 10:52 pm
Forum: General discussion and questions about Aware IM
Topic: Consuming an AIM REST API from with AIM app
Replies: 18
Views: 26944

Re: Consuming an AIM REST API from with AIM app

I think I have found a workable solution for this issue: Enable CORS through your AwareIM Tomcat web.xml configuration file Create an alias name for your AwareIM server AJAX your REST service using this alias name Enabling CORS Add following before the closing </web-app> tag in Tomcat\conf\web.xml <...
by UnionSystems
Tue Sep 03, 2019 10:41 pm
Forum: General discussion and questions about Aware IM
Topic: Tree Menu Question
Replies: 10
Views: 10948

Re: Tree Menu Question

We enable client management of their Visual Perspective menus by using <<MyObject.MyAttribute>> tags in the Visual Perspective menu Name field and enabling disabling through expressions in the menu Condition when invisible field. This does not enable dynamic creation of new menu entries but its does...
by UnionSystems
Tue Sep 03, 2019 9:24 am
Forum: General discussion and questions about Aware IM
Topic: Problem with SUBSTRING in proces
Replies: 3
Views: 5260

Re: Problem with SUBSTRING in proces

Perhaps the error occurs if the attribute is UNDEFINED? You could try changing to

Code: Select all

IF CustomFieldModel.Value IS DEFINED THEN CustomFieldModel.Geboortedatum=SUBSTRING(CustomFieldModel.Value,0,4)
by UnionSystems
Tue Sep 03, 2019 12:53 am
Forum: General discussion and questions about Aware IM
Topic: Consuming an AIM REST API from with AIM app
Replies: 18
Views: 26944

Re: Consuming an AIM REST API from with AIM app

If you extend web.xml from <session-config> <session-timeout>30</session-timeout> </session-config> to <session-config> <session-timeout>30</session-timeout> <cookie-config> <name>${user.name}XYZ</name> </cookie-config> </session-config> Session Cookie name is myServerUserNameXYZ instead of the defa...
by UnionSystems
Mon Sep 02, 2019 9:26 pm
Forum: General discussion and questions about Aware IM
Topic: Syntax for modeless window from JavaScript??
Replies: 8
Views: 12119

Re: Syntax for modeless window from JavaScript??

This works for AwareApp.startProcess2

Code: Select all

AwareApp.startProcess2('myProcessName', 'myObjectName',  'myObjectID',  {modeless: true, position: {top: 100, right: 100 }  } );
by UnionSystems
Mon Sep 02, 2019 9:21 pm
Forum: General discussion and questions about Aware IM
Topic: Consuming an AIM REST API from with AIM app
Replies: 18
Views: 26944

Re: Consuming an AIM REST API from with AIM app

Hi John,

Did you ever find a solution for this? We have a Kendo Autocomplete widget woking nicely with its datasource being an AwareIM REST service but as you point out calling the REST service overwrites the browsers JSESSIONID cookie so the original SESSION expires.
by UnionSystems
Thu Aug 29, 2019 9:21 pm
Forum: General discussion and questions about Aware IM
Topic: REST Service URL
Replies: 1
Views: 3107

REST Service URL

The Default URL for a REST Service exposed in AwareIM for a published BSV is

Code: Select all

http://ServerName:port/AwareIM/REST/BusinessSpace/ServiceName?parameters
is there a URL available when your BSV is running in Test Mode?
by UnionSystems
Mon Jul 08, 2019 7:06 am
Forum: General discussion and questions about Aware IM
Topic: Conditional disabling of expand rows
Replies: 3
Views: 5675

Re: Conditional disabling of expand rows

Hi PointsWell,

Did you find a solution to this?
by UnionSystems
Tue Apr 16, 2019 10:44 am
Forum: General discussion and questions about Aware IM
Topic: 14 Days to Go!!!! Whacko!
Replies: 1
Views: 3678

Re: 14 Days to Go!!!! Whacko!

Attendance of this conference is highly recommend for anyone using or considering using AwareIM. The presentations from AwareIM's author Vladimir are invaluable.

Don't miss out!
by UnionSystems
Tue Apr 16, 2019 1:21 am
Forum: General discussion and questions about Aware IM
Topic: EXPORT to a file name that is stored in an attribute
Replies: 3
Views: 5831

Re: EXPORT to a file name that is stored in an attribute

When dealing with server directories the FILE_EXISTS() function and MAKE DIRECTORY action can be useful. You can check a directory exists with FILE_EXISTS() and if it does not exist you can create it with MAKE DIRECTORY. IF FILE_EXISTS(SystemSettings.BatchFileLocation)='No' THEN DISPLAY MESSAGE 'Cre...
by UnionSystems
Tue Mar 26, 2019 11:40 pm
Forum: General discussion and questions about Aware IM
Topic: Pick one or Multiple adds in random order
Replies: 10
Views: 12012

Re: Pick one or Multiple adds in random order

The other place we've observed where order of items in not maintained is the Multi-Selector widget
by UnionSystems
Tue Mar 26, 2019 11:31 pm
Forum: General discussion and questions about Aware IM
Topic: Efficient AwareIM Object Design
Replies: 1
Views: 3178

Efficient AwareIM Object Design

It's great how easily you can model real world situations and create multiple relationships between objects in AwareIM but we wonder if too many nested relationships can cause performance problems. As an example we have a BSV with a "Person" object with a large number of relationship attributes. Man...
by UnionSystems
Tue Mar 26, 2019 8:59 pm
Forum: General discussion and questions about Aware IM
Topic: Create / Generate Image with BO Data Overlay?
Replies: 3
Views: 5946

Re: Create / Generate Image with BO Data Overlay?

Perhaps a REST service that produces a ticket document would be a good solution. There seem to be a number of people doing this. Eg https://iwannaticket.com.au/features. They may offer more functionality than you actually want.