Search found 124 matches

by greg
Tue Dec 11, 2007 1:45 am
Forum: General discussion and questions about Aware IM
Topic: Rule Help
Replies: 2
Views: 4077

I assume you have a BO Document and a daughter BO Revision and it is 1 to N relationship. Document has an attribute Revisions of revision type and Revision has a matching attribute MyDocument, RevisionNo and Status with initial value Active. Then you can try this approach. Note however that you need...
by greg
Sun Dec 09, 2007 10:42 am
Forum: General discussion and questions about Aware IM
Topic: how to create a nice timetable entry form
Replies: 2
Views: 4333

Peter, 1. If you need to display a current date but want to have it editable you can set up a date type attribute with initial value CURRENT_DATE or number type attribute with initial value CURRENT_DAY_OF_MONTH or whatever other option you may require. Check Date and Time Functions chapter in the us...
by greg
Sun Dec 09, 2007 10:21 am
Forum: General discussion and questions about Aware IM
Topic: Importing data from another database/questions about AwareIm
Replies: 18
Views: 23049

karima Installation of AwareIM on top of SQL Server is documented in the installation guide and have been done successfully by numerous people. You need to know the root user name and password. Another thing to check is the version of your SQL server and if the connection file Aware uses is compatib...
by greg
Sun Dec 09, 2007 10:09 am
Forum: General discussion and questions about Aware IM
Topic: Changing the Pop-Up, Ajax Styled Query List View
Replies: 6
Views: 9481

You can check how it is done in sample applications. I use this line: <a style="font-weight: bold;" href="javascript:;" onclick="window.open('http://www.server.com:8080/AwareIM/logonGuest.do?domain=BusinessSpaceName','','width=1074,height=700,left=0,top=0,screenX=0,screenY=0,scrollbars=1,resizable=1...
by greg
Mon Dec 03, 2007 4:30 am
Forum: General discussion and questions about Aware IM
Topic: Visual Perspective / Banner / Import HTML page V3.0
Replies: 2
Views: 4704

I think what you should do is to store all your single html and all resource files in one directory and then point to this directory
by greg
Tue Nov 27, 2007 5:40 am
Forum: General discussion and questions about Aware IM
Topic: would this be possible
Replies: 2
Views: 3898

I doubt that the system development guys will be ready to implement database development via a web interface anytime soon. What I do with some of my applications is to develop them on my local machine and then upload through standard Aware web interface. Aware provides Business Space Management menu...
by greg
Tue Nov 27, 2007 4:48 am
Forum: General discussion and questions about Aware IM
Topic: Dynamic forms?
Replies: 8
Views: 9415

You can try playing with READ PROTECT rules. Set up attributes for all possible scenarios on a single form and add object rules like

If BO.Type=`Car` Then
READ PROTECT BO.Bike, BO.Scooter and so on.

Not sure how it will work when a new BO is entered.

greg
by greg
Mon Nov 19, 2007 1:57 am
Forum: General discussion and questions about Aware IM
Topic: Best Practices / Idea Sharing
Replies: 7
Views: 10659

I am all for it. greg
by greg
Mon Nov 19, 2007 1:27 am
Forum: General discussion and questions about Aware IM
Topic: Beginner's problem with query
Replies: 6
Views: 9707

It is hard to say what and where went wrong. This type of simple query has been reliably working in hundreds of applications. A good way to start with Aware is to go through detailed description of Library sample application. The manual takes you through many useful concepts in Aware based design. C...
by greg
Thu Nov 15, 2007 12:14 pm
Forum: General discussion and questions about Aware IM
Topic: Customer self registration
Replies: 2
Views: 4945

A simple way of doing this is to set password to the record's ID. To implement add a rule to your Customer object

If Customer IS NEW Then
Customer.Password=Customer.ID

greg
by greg
Fri Oct 26, 2007 2:53 am
Forum: General discussion and questions about Aware IM
Topic: Odd Rules Results
Replies: 2
Views: 4694

It is hard to say from your description especially without knowing the queries and what attributes you choose to display.
by greg
Wed Aug 29, 2007 2:16 am
Forum: General discussion and questions about Aware IM
Topic: A Big Problem With Printed Docs
Replies: 17
Views: 29609

John, Am I correct to assume as the name implies that your Temp object is not persisted? I think that in this case the object is NEW until it is discarded and your protection rule will not work. The other agency had probably created their Temp shortly after the first one and it was the one retrieved...
by greg
Wed Jul 18, 2007 4:29 am
Forum: General discussion and questions about Aware IM
Topic: Short Date attribute
Replies: 9
Views: 8441

Yes, I think support is right and that is a better way to do it. Expiry month and year are sent as numbers for credit card processing. Even if you specify MM/yy as the format, I believe the system stores the day as 01 but does not display it. You can still store as a date and then extract month and ...
by greg
Mon Jun 18, 2007 12:28 pm
Forum: General discussion and questions about Aware IM
Topic: changing databases
Replies: 3
Views: 7330

John, Having done a data transfer recently I can tell you that it is not an easy task. It depends on how much data you have and how complicated are relationships between your tables. It is a straightforward process to export and then import a flat table. However you will likely need to edit an expor...
by greg
Mon Jun 18, 2007 11:34 am
Forum: General discussion and questions about Aware IM
Topic: Wish: phone number formatting
Replies: 11
Views: 14625

REPLACE_PATTERN function

I use REPLACE_PATTERN function to do a clean up. For example, unwanted characters from a credit card number are removed with this rule: Customer.CrCardNumber=REPLACE_PATTERN(Customer.CreditCardNumber,'[ ,-]','') it removes spaces, commas and dashes. I write the cleaned up number to another attribute...