Sorry for all these troubles. There are still some limitations which you unfortunately hit - they do appear minor to us and there is a workaround:
BusinessObject.Ndate = 08/15/06 (DOES NOT WORK)
When you specify a date or time constant in rules it still has to be in dd/MM/yy or dd/MM/yyyy format. This does not seem to be a big issue since it only affects configurator, not end user.
BusinessObject.Ndate = CURRENT_DATE+5 (DOES NOT WORK)
Arithmetic with dates is not supported when used in queries. Please use DATE_ADD function instead:
BusinessObject.Ndate = DATE_ADD (CURRENT_DATE, 5)
Please also make sure that your database field is re-built and has "date" type, not "datetime" (see below).
#2) It would be VERY HELPFUL if we had QUERIES / PROCESSES and RESULTS of EXPRESSIONS in LOG VIEWER.
We understand this wish very well. Unfortunately, queries are directly translated into SQL and we do not perform intermediate calculations. It is not possible, though, to see all inner workings of SQL and understand why it doesn't find records. However, if you know SQL you can have a look at the SQL form of a particular query that gives its SQL translation.
#3) I understand the export/import into a new BS and have new tables in a new BS but I can't figure out how to get the existing data in them. If you will recall I attempted to address this simple backup restore issue in another thread awhile back, about exporting data in a CSV and importing it back in. But AwareIM doesn't give you the ability to export/import data in the same state into a NEW file.
There is actually much simpler way to change the type of the field. Go to mysql utility and type the following commands:
use BASDB (or use BASDBTEST if you are working in the testing mode)
ALTER TABLE BusinessSpaceName_BusinessObject CHANGE Ndate date
(if working in the testing mode BusinessSpaceName must start with bastestdomain, for example bastestdomainMyBusinessSpace_MyObject)