Search found 595 matches

by aware_support2
Wed Mar 15, 2006 11:22 am
Forum: General discussion and questions about Aware IM
Topic: Using a list of values from related database in search form
Replies: 23
Views: 20459

To get the search form to display a set of values to the user for selection, rather than a blank box, you need to specify a list of choice values for attribute Occupation on the related object and indicate that no other values allowed (this is done in the Configuration Tool). Then the form will show...
by aware_support2
Wed Mar 15, 2006 11:00 am
Forum: General discussion and questions about Aware IM
Topic: Using a list of values from related database in search form
Replies: 23
Views: 20459

The form shows blank boxes for attributes of the related object so that the user can type required criteria for the related objects. For example, you could use a form for Account object to find all accounts where the account holder name is [user-entered]. The account holder here is an attribute on A...
by aware_support2
Tue Mar 14, 2006 11:18 am
Forum: General discussion and questions about Aware IM
Topic: wish: debugger
Replies: 6
Views: 7825

Terry, We do plan to add a full interactive debugger in the future. In the meantime, Aware IM offers a logger that, on its most detailed level, gives a full report of the rule processing including evaluation of conditions, execution of actions, assigned values etc. The Log Viewer presents the report...
by aware_support2
Tue Mar 14, 2006 10:24 am
Forum: General discussion and questions about Aware IM
Topic: Unwanted query links
Replies: 1
Views: 5693

Terry, If you do not want these operations to be visible you can configure a process that lets the user choose from the query results and then performs a specific action with the selection, for example: PICK FROM Account WHERE Account.State = 'Open' VIEW Account Another example: PICK ONE OR MORE FRO...
by aware_support2
Tue Mar 14, 2006 10:07 am
Forum: General discussion and questions about Aware IM
Topic: NUM_TO_TEXT and TEXT_TO_NUM?
Replies: 3
Views: 8378

Terry,

Yes, I see your point. We have added the type conversion functions to our development list and will implement them shortly. We will post a message to this topic when the functions are available.
by aware_support2
Sat Mar 11, 2006 3:42 am
Forum: Tips and Tricks
Topic: Wish: nested conditionals
Replies: 1
Views: 6890

Terry, You are right, nested conditional expressions are not supported because they go against the rule engine implementation for reasons described in details in Configuration Principles under the Configuration Guidelines section of the Aware IM User Guide. Generally, Aware IM encourages a non-proce...
by aware_support2
Sat Mar 11, 2006 2:03 am
Forum: Problem reports
Topic: choice popup problems
Replies: 1
Views: 6064

Terry, Thanks for reporting this problem. In our tests the problem happens only if the object is not saved after the attribute is changed. If the object is saved before the form is previewed then all values are displayed correctly. Please save the object before previewing the form as a workaround un...
by aware_support2
Sat Mar 11, 2006 1:26 am
Forum: General discussion and questions about Aware IM
Topic: NUM_TO_TEXT and TEXT_TO_NUM?
Replies: 3
Views: 8378

Terry, The system automatically handles type conversions between textual and numeric attributes. You can always assign a numeric value to a textual attribute. A textual value can be assigned to a numeric attribute if the text contains a valid representation of a number. You can use the standard text...
by aware_support2
Fri Mar 10, 2006 1:30 am
Forum: General discussion and questions about Aware IM
Topic: Working with Reports
Replies: 1
Views: 5962

The system will automatically create multiple pages if the amount of data cannot fit on one page when the report is generated. If you want to force a page break, you can indicate this in Title, Summary or group bands (please see the Report Designer section in the Aware IM User Guide for details). If...
by aware_support2
Thu Mar 09, 2006 3:08 am
Forum: General discussion and questions about Aware IM
Topic: Copying Objects
Replies: 5
Views: 11858

To select multiple items for copying, hold down Ctrl key (Apple key on Mac) while clicking on each desired item in the tree. Then right-mouse-click (Control-click on Mac) on any of the selected items and select Copy from the context menu.
by aware_support2
Thu Mar 09, 2006 1:04 am
Forum: General discussion and questions about Aware IM
Topic: Copying Objects
Replies: 5
Views: 11858

Yes. You can copy business objects, rules and other configuration elements from one business space to another, or duplicate them within the same business space. To do it, right-mouse-click (Control-click on Mac) on the desired configuration element in the configuration tree panel on the left and sel...
by aware_support2
Wed Mar 08, 2006 1:09 am
Forum: General discussion and questions about Aware IM
Topic: showing BO Group attributes
Replies: 1
Views: 5531

Yes, you are right. We will add it to our TO DO list.
by aware_support2
Wed Mar 08, 2006 1:05 am
Forum: General discussion and questions about Aware IM
Topic: how can I tell if no records were found?
Replies: 2
Views: 6796

Terry, > When I do a FIND how can I tell if no records were found? You can use EXISTS in a condition before you run your query: If NOT (EXISTS ...) Then ... where the expression for EXISTS is exactly the same as for FIND in the query. > ... tell how many were found ... You can use COUNT to determine...
by aware_support2
Tue Mar 07, 2006 12:31 pm
Forum: General discussion and questions about Aware IM
Topic: 'Not In' object query
Replies: 1
Views: 5749

Yes. Your query could look like this: FIND Client WHERE NOT(EXISTS Transaction WHERE (Transaction.Client = Client AND Transaction.MadeOn = ?'Transaction Date')) This query will display a window to let the user specify the desired date. You can, of course, replace the prompt (the ?'Transaction Date' ...
by aware_support2
Tue Mar 07, 2006 12:19 pm
Forum: General discussion and questions about Aware IM
Topic: Multiple Contact Sets
Replies: 1
Views: 7028

The most straightforward approach would be the one that closely follows your description. You can define an object ContactSet with attributes Companies and Employees to allow one or more employees to work on a list of selected companies. Create access level 'Manager' and allow users of that access l...