Search found 595 matches

by aware_support2
Thu Nov 22, 2007 12:13 am
Forum: General discussion and questions about Aware IM
Topic: Empty Query in Testing Mode
Replies: 38
Views: 39528

There seems to be a problem with the new-style interface for queries where results are not shown in the results table sometimes. We are investigating the issue. In the meantime as a workaround please use the Version 2 Interface option for your queries. This should show the results properly. The opti...
by aware_support2
Thu Nov 22, 2007 12:10 am
Forum: General discussion and questions about Aware IM
Topic: Beginner's problem with query
Replies: 6
Views: 9692

There seems to be a problem with the new-style interface for queries where results are not shown in the results table sometimes. We are investigating the issue. In the meantime as a workaround please use the Version 2 Interface option for your queries. This should show the results properly.
by aware_support2
Thu Oct 25, 2007 11:17 pm
Forum: General discussion and questions about Aware IM
Topic: Standard Presentation with new grid
Replies: 1
Views: 4582

You can control the order of columns for query results in the Configuration Tool. Click the Details button in the Display Results box to bring up the Display Query Results window. Click checkboxes for attributes you want displayed. Click the up and down arrow buttons on right to change the order of ...
by aware_support2
Wed Oct 24, 2007 9:59 am
Forum: General discussion and questions about Aware IM
Topic: Embedding Bitmap image in Aware
Replies: 1
Views: 3846

Images stored in attributes of type Picture are displayed on object forms. Images can also be stored in attributes of type Document (like files of any other type). In both cases the user can upload an image via an object form. Also, images can be uploaded into database by rules (see the process that...
by aware_support2
Mon Oct 15, 2007 10:10 pm
Forum: General discussion and questions about Aware IM
Topic: Return from Presentation
Replies: 3
Views: 5412

Hi Pete,

You can place a hyperlinked element on the second presentation to display the first presentation. See presentations on object Manufacturer in Ordering sample application for an example of using hyperlinks.
by aware_support2
Sun Oct 07, 2007 10:20 pm
Forum: General discussion and questions about Aware IM
Topic: Record Level Access
Replies: 1
Views: 3991

Hi Vins, You can add protection rules like the following to your objects: If NOT (LoggedInStaff.Status='Region' AND MyObject.Code STARTSWITH LoggedInMember.Code) Then READ PROTECT MyObject FROM Staff If NOT (LoggedInStaff.Status='Chapter' AND MyObject.Code ENDSWITH LoggedInMember.Code) Then READ PRO...
by aware_support2
Thu Oct 04, 2007 11:19 am
Forum: General discussion and questions about Aware IM
Topic: Defining a report detail
Replies: 4
Views: 6561

This can be done by using sub-reports. Have a look at the "Member details" report in the Library sample application for an example. The report shows member attributes like name and address followed by multiple related items like loans and reservations implemented as sub-reports.
by aware_support2
Tue Oct 02, 2007 9:09 am
Forum: General discussion and questions about Aware IM
Topic: Proecess works in one and not another
Replies: 1
Views: 3583

Check that the logged-in user is registered in the system using object RegularUser. Otherwise your rule will not work as object RegularUser will not be available.
by aware_support2
Wed Sep 12, 2007 9:49 am
Forum: Tips and Tricks
Topic: Converting Plain Text to a BO Type
Replies: 5
Views: 10597

The following variation will add all object instances found by the FIND action to a multiple-allowed reference attribute:

FIND OtherObject WHERE OtherObject.Name CONTAINS MyObject.TextAttribute
INSERT OtherObject IN MyObject.ReferenceAttribute
by aware_support2
Wed Sep 12, 2007 2:21 am
Forum: Tips and Tricks
Topic: Converting Plain Text to a BO Type
Replies: 5
Views: 10597

The way to look up and assign a reference attribute based on a text attribute is to have a rule on the object (MyObject in this example) with two actions like these:

FIND OtherObject WHERE OtherObject.Name = MyObject.TextAttribute
MyObject.ReferenceAttribute = OtherObject
by aware_support2
Wed Sep 05, 2007 3:53 am
Forum: Tips and Tricks
Topic: Help with Count
Replies: 1
Views: 5533

As an example, here is the rule "Total items" on object PurchaseOrder from the Ordering sample application:

PurchaseOrder.TotalItems=COUNT LineItem WHERE (LineItem IN PurchaseOrder.Items)
by aware_support2
Mon Aug 27, 2007 9:04 am
Forum: Tips and Tricks
Topic: Making a custom catalog
Replies: 7
Views: 15420

Try using AND instead of OR in your rule.
by aware_support2
Tue Aug 14, 2007 1:29 am
Forum: General discussion and questions about Aware IM
Topic: Custom Presentation
Replies: 4
Views: 6846

Hi Chris, You are right, the options should not be available for custom presentations. Please ignore the options for custom presentations. Reports and presentations have compatible design. You can export your presentation design, create a report and import the design into the new report. Reports are...
by aware_support2
Tue Aug 14, 2007 1:12 am
Forum: Problem reports
Topic: Document Template Error: Can't co-create object
Replies: 3
Views: 7886

Hi curtisk,

To create a new document template, right-click on "Document templates, reports" in the Configuration Tool tree and click New. In the editor panel, select "MS Word document" for document type and click Import button to import the file you created in MS Word.
by aware_support2
Tue Aug 14, 2007 12:20 am
Forum: General discussion and questions about Aware IM
Topic: Custom Presentation
Replies: 4
Views: 6846

Hi Chris,

I'm not sure I understand the question, but generally item rules apply to standard query presentation. Information shown in custom presentations can be controlled by conditional elements.