Search found 595 matches

by aware_support2
Thu Sep 04, 2008 4:30 am
Forum: Problem reports
Topic: v4 Data change by another loop
Replies: 2
Views: 4360

Looks like a bug. We will investigate and fix it.
by aware_support2
Thu Sep 04, 2008 4:27 am
Forum: Problem reports
Topic: v4 Bug / List view visual and loss of change data issues?
Replies: 2
Views: 4409

Changes are saved when the focus is transferred away from the edited record, for example when the user clicks on another record.

At the moment Refresh does not save changes in currently edited record. We will fix that.
by aware_support2
Tue Sep 02, 2008 4:03 am
Forum: General discussion and questions about Aware IM
Topic: V4 - Form Operations
Replies: 9
Views: 10036

We are investigating this.
by aware_support2
Tue Sep 02, 2008 12:53 am
Forum: Problem reports
Topic: V4 error
Replies: 5
Views: 7361

Thanks, we are investigating this.
by aware_support2
Tue Sep 02, 2008 12:36 am
Forum: General discussion and questions about Aware IM
Topic: Powered By
Replies: 3
Views: 4621

The Department Edition does not have it. It is the same in version 4 as it was in version 3.
by aware_support2
Tue Sep 02, 2008 12:25 am
Forum: General discussion and questions about Aware IM
Topic: Transferring License from one machine to another
Replies: 3
Views: 7536

For the moment please email license transfer requests to [email protected]
by aware_support2
Fri Aug 29, 2008 12:29 pm
Forum: General discussion and questions about Aware IM
Topic: New Version 4 Forms display
Replies: 5
Views: 9061

We are currently aware of a problem with the calendar control in Firefox 3 (works fine in Firefox 2). If you noticed other problems with sample applications, please post specific applications/forms/sections and the type and version of the browser. You may need to adjust your form layout to look good...
by aware_support2
Tue Aug 12, 2008 1:50 am
Forum: General discussion and questions about Aware IM
Topic: Query using intelligent objects
Replies: 1
Views: 2902

An intelligent object should have no limitations when used in queries. If Asset is a native Aware IM object and has a non-multiple-allowed reference attribute of type Employee, your query in the text mode could look like this: FIND Asset WHERE Asset.Employee.LastName = ?'Employee last name' You can ...
by aware_support2
Thu Jul 10, 2008 7:49 am
Forum: General discussion and questions about Aware IM
Topic: How do i pick a particular document template to merge?
Replies: 16
Views: 16725

1. You can specify more than one document template when adding an operation of type Create Document to an object form. When the user clicks the operation at run-time, the system will automatically show a list of all the templates you specified for the user to choose one. 2. With the Developer Editio...
by aware_support2
Tue Jan 22, 2008 11:35 pm
Forum: Problem reports
Topic: Attribute with choice list & 'value must be provided'
Replies: 6
Views: 9523

To force the user to make a selection manually the initial value must be blank. If the user misses the filed the error message will be displayed.
by aware_support2
Tue Jan 22, 2008 10:25 pm
Forum: Problem reports
Topic: Attribute with choice list & 'value must be provided'
Replies: 6
Views: 9523

This is the intended behavior to draw the user attention to an important filed where the user must make a choice. If you want to pre-select a value from the list you can assign the initial value for the attribute to be the same as one of the values in the list.
by aware_support2
Sun Jan 20, 2008 11:03 pm
Forum: General discussion and questions about Aware IM
Topic: HTML process does not start on click
Replies: 2
Views: 4541

You need to use "selectedProcessName" instead of "processName". If you use a relative path for your URL it needs to start with "../" Here is an example from the custom HTML welcome page for customers from the Ordering sample application: <a href="../businessProcess.do?actionMethod=commit&selectedPro...
by aware_support2
Wed Jan 16, 2008 11:35 pm
Forum: General discussion and questions about Aware IM
Topic: Need syntax help on FIND inside a reference attribute
Replies: 3
Views: 4651

You could try a query with subquery:

FIND Country WHERE EXISTS Control WHERE (Control IN Country.ControlRecords AND Control.FiscalYearName = LoggedInSystemUser.FiscalYear)
by aware_support2
Wed Jan 16, 2008 12:07 am
Forum: Problem reports
Topic: Business Space version integrity checker issue on server
Replies: 5
Views: 8518

Reserved words are specific to each database (i.e. Derby, MySQL, etc.). If you use different databases with Aware IM on different computers you need to run the integrity check on both.
by aware_support2
Mon Jan 14, 2008 11:44 pm
Forum: Problem reports
Topic: NUMBER_OF_PAGES Problem
Replies: 2
Views: 5599

Instead of using a combined text element like this:

Page <<PAGE_NUMBER>> of <<NUMBER_OF_PAGES>>

use PAGE_NUMBER and NUMBER_OF_PAGES in two separate tag elements (not text elements). It should work properly in separate tag elements.