Search found 595 matches

by aware_support2
Wed Jan 25, 2006 11:35 am
Forum: General discussion and questions about Aware IM
Topic: Am I heading in the right direction ?
Replies: 6
Views: 16935

So, your design is like this (correct me if I am wrong): Business objects: Company -- CompanyProject -- Project Attributes: Company.Projects (multiple) -- matching to -- CompanyProject.Company (single) Project.Companies (multiple) -- matching to -- CompanyProject.Project (single) If this is correct,...
by aware_support2
Wed Jan 25, 2006 10:36 am
Forum: General discussion and questions about Aware IM
Topic: Copy data from one Business Object To another
Replies: 6
Views: 16525

Denis, Based on your requirements I would suggest you to consider a design that in addition to objects Client and Product has an intermediary object called, say, ProductAction. This new object would have attribute Status to register the nature of the action (i.e. 'Interested', 'Not Interested', 'Pur...
by aware_support2
Tue Jan 24, 2006 11:44 pm
Forum: General discussion and questions about Aware IM
Topic: Query Creation Question with Relationship
Replies: 1
Views: 6332

All you need to do is to add some shortcut attributes to Inspection object that point to Project attributes. This way the project details will appear to be a part of Inspection object and can be used in query results and other parts of the system as if they were actual Inspection attributes. For exa...
by aware_support2
Tue Jan 24, 2006 12:15 pm
Forum: General discussion and questions about Aware IM
Topic: Aware IM "About" link in the browser application?
Replies: 7
Views: 8957

Not at the moment. With Aware IM Developer Edition you can specify the name of your application and your own copyright message that will be displayed in the About box. This is useful when distributing your applications to your customers for installation on their computers. However, the 'Powered By A...
by aware_support2
Tue Jan 24, 2006 12:15 am
Forum: General discussion and questions about Aware IM
Topic: Copy data from one Business Object To another
Replies: 6
Views: 16525

Denis, Almost certainly this can be easily done. Before I can give you the details though, could you please describe a more specific example to ensure I understand your task correctly? For example, what do you want to happen when you add a Product with attributes Name 'ABC', Code '123' and Category ...
by aware_support2
Sat Jan 21, 2006 5:30 am
Forum: General discussion and questions about Aware IM
Topic: Derby/MySQL comparison request
Replies: 6
Views: 15577

All our users I know of to use Derby are small companies. My rough estimate is that they may have several tens of thousands of records in a single table and a few concurrent users (probably less than 5). We did not get reports of any database or multi-user related issues. In our own tests we success...
by aware_support2
Fri Jan 20, 2006 11:28 am
Forum: General discussion and questions about Aware IM
Topic: Derby/MySQL comparison request
Replies: 6
Views: 15577

Derby is a very capable database and should be sufficient for most small business applications. There may be a number of considerations that can affect the decision on which database to choose. Organizations with existing IT infrastructure that already have MySQL or MS SQL Server running may prefer ...
by aware_support2
Mon Jan 16, 2006 3:05 am
Forum: General discussion and questions about Aware IM
Topic: Am I heading in the right direction ?
Replies: 6
Views: 16935

Yes, you are right. You do need a separate business object to represent a relationship between two objects that, in addition to linking the objects, also has to capture some additional information. In your case it would be the role of the company on the project and the company representative. Anothe...
by aware_support2
Mon Dec 05, 2005 6:26 am
Forum: Tips and Tricks
Topic: Auto generate ID
Replies: 1
Views: 6854

Richard, If you want the ID to be unique across records of a particular object, you can add a rule like the one below to the object. For example, if the object is called Account and the ID attribute is called AccountID, the rule would look like this: If Account IS NEW Then Account.AccountID = MAX Ac...
by aware_support2
Mon Nov 21, 2005 4:43 am
Forum: General discussion and questions about Aware IM
Topic: Creating Documents
Replies: 5
Views: 14635

> Can you select information from complete independant objects in the same report?

Yes. You can configure a report containing sub-reports. Each sub-report will have a separate query that can search for objects not related to objects in the main report or other sub-reports.
by aware_support2
Mon Nov 21, 2005 4:15 am
Forum: General discussion and questions about Aware IM
Topic: Creating Documents
Replies: 5
Views: 14635

Jolee, The contents of a document template for your document may look something like this: IPU Name: <<IPU.Name>> Device Name: <<IPU.IPU_D.Name>> License: <<IPU.Lic.version>> Client Name: <<IPU.Property.System.Client.Name>> PropertyName: <<IPU.Property.Name>> System Name: <<IPU.Property.System.Name>...
by aware_support2
Mon Nov 21, 2005 1:01 am
Forum: General discussion and questions about Aware IM
Topic: Creating Documents
Replies: 5
Views: 14635

Jolee, Generally, if an object is logically related to other objects it is a good idea to have attributes on the object that represent these relationships. Usually, but not necessarily, such attributes should have matching attributes on the related objects so the relationship can be traversed from e...
by aware_support2
Wed Nov 16, 2005 4:40 am
Forum: General discussion and questions about Aware IM
Topic: Queries in Aware
Replies: 14
Views: 45368

Aware IM Help in the Configuration Tool and the User Guide document (located in 'docs' directory under the AwareIM installation directory) have plenty of information on configuring and running queries.
by aware_support2
Wed Nov 16, 2005 1:12 am
Forum: General discussion and questions about Aware IM
Topic: Queries in Aware
Replies: 14
Views: 45368

Jolee, You can take advantage of Aware IM feature known as 'matching attribute' to establish visibility from Lic all the way back to Client. For example, you can add attribute Client of type Client to object R_System that will be a matching attribute of attribute System on object Client. The matchin...
by aware_support2
Wed Sep 21, 2005 4:19 am
Forum: General discussion and questions about Aware IM
Topic: currency format
Replies: 8
Views: 21769

Try splitting this into two elements positioned next to each other. The first should be a Text element containing 'Total amount:'. The second should be a Tag element containing 'SUM PurchaseOrder.TotalCost,$#,##0.00' (without the angle brackets).