Search found 1252 matches

by rocketman
Fri Mar 20, 2009 10:54 am
Forum: General discussion and questions about Aware IM
Topic: Scheduling
Replies: 8
Views: 16817

Hi Paddo, My Mistake, the log viewer doesn't fire but if you choose "Log to Console" from the control panel you'll see the output when the schedule fires Here's some code from a very similar shedule test I did which works. 1) set up the schedule on the schedule tab 2)Click on the standard or textual...
by rocketman
Thu Mar 19, 2009 8:46 am
Forum: General discussion and questions about Aware IM
Topic: Scheduling
Replies: 8
Views: 16817

Hi Paddo, This one's a bit vague. Can you give more details about the process. As a kind of generality, when you kick off a schedule, nothing will be in context so your process has to make sure all BO's are available and in context otherwise it will fail. (see your own recent posts on prcesses and t...
by rocketman
Thu Mar 19, 2009 8:21 am
Forum: General discussion and questions about Aware IM
Topic: Help with Process Writing
Replies: 20
Views: 16704

Hi Paddo, No problem. I'm probably only a couple of pages ahead of you in the manal anyway. It's just processes were fresh in my mind. A useful post to read woluld be http://www.awareim.com/forum/viewtopic.php?t=3083 It's a recent dialog with Tom on the very subject of when to use the "process for i...
by rocketman
Thu Mar 19, 2009 8:20 am
Forum: General discussion and questions about Aware IM
Topic: Help with Process Writing
Replies: 20
Views: 16704

Hi Paddo, No problem. I'm probably only a couple of pages ahead of you in the manal anyway. It's just processes were fresh in my mind. A useful post to read woluld be http://www.awareim.com/forum/viewtopic.php?t=3083 It's a recent dialog with Tom on the very subject of when to use the "process for i...
by rocketman
Wed Mar 18, 2009 3:23 pm
Forum: General discussion and questions about Aware IM
Topic: Help with Process Writing
Replies: 20
Views: 16704

.... and with reference to Tom's Post

"Try putting the FIND in 1 process and calling a second process which has the SEND action."

In this process, on the General tab, you need to make sure "Revisions" is listed in the right hand box labeled " For this process"

It should work fine then

Mo
by rocketman
Wed Mar 18, 2009 3:17 pm
Forum: General discussion and questions about Aware IM
Topic: Help with Process Writing
Replies: 20
Views: 16704

Hi Paddo,

Instead of using Find Revision where Revision.expirydate<=Current_Date and Revision.Status='Current'

Try

Find Revision where DATE DIFFERENCE(Revision.expirydate,Current_Date )>0 and Revision.Status='Current'

Mo
by rocketman
Tue Mar 17, 2009 10:22 pm
Forum: General discussion and questions about Aware IM
Topic: Document merge problem
Replies: 4
Views: 4747

Hi Tom, I'll have a play with the stuff on that link when I get a free hour. For now, having done a full machine reboot, The original process including your PICK FROM USING [queryname] suggestion is actually working Not sure whether that's a blessing or a curse. I hate not knowing what caused a prob...
by rocketman
Tue Mar 17, 2009 11:38 am
Forum: General discussion and questions about Aware IM
Topic: Document merge problem
Replies: 4
Views: 4747

Hi Tom, Well it sort of worked - once. However the second time around the loop I got an error saying couldn't complete the job because normal.dot was locked and the only way round it was to restart the server. I know normal.dot is a word template file but it's supposed to be read only so I don't kno...
by rocketman
Mon Mar 16, 2009 2:05 pm
Forum: General discussion and questions about Aware IM
Topic: Document merge problem
Replies: 4
Views: 4747

Document merge problem

Nearly there..... I have a list of enquirers who each need to be sent a DVD. If I create the following process everything works fine: PICK ONE OR MORE FROM Contacts WHERE Contacts.DateDVDSent IS UNDEFINED DISPLAY DOCUMENT DVDLetter MERGE INTO ONE However the problem is - using this method, I can't c...
by rocketman
Thu Mar 12, 2009 2:35 pm
Forum: General discussion and questions about Aware IM
Topic: Referencing two previously unlinked BO's
Replies: 1
Views: 2676

Hi guys - forget the last post. It was dead easy in the end.

Three lines saved me half a mile of code. What a fantastic product
by rocketman
Thu Mar 12, 2009 2:09 pm
Forum: General discussion and questions about Aware IM
Topic: Referencing two previously unlinked BO's
Replies: 1
Views: 2676

Referencing two previously unlinked BO's

I have two BO's previously unlinked (historical data from an old system) which I now want to link together via reference attributes - which I've created. I need to FIND ALL instances in one file (easy) then loop through that file, and for each instance of a flight do a search on the second file for ...
by rocketman
Wed Mar 11, 2009 5:00 pm
Forum: General discussion and questions about Aware IM
Topic: Return Character
Replies: 11
Views: 15766

Well .... Not sure why (one for Aware support) but splitting the process as you suggested at least threw up some decent errors in the log viewer that I could work on instead of the one liner which just said "you failed" All sorted now - thanks for the tip, Tom PS ... it was all to do with the rubbis...
by rocketman
Wed Mar 11, 2009 3:45 pm
Forum: General discussion and questions about Aware IM
Topic: Return Character
Replies: 11
Views: 15766

Hi Tom - GOD this forum server is slow today. Your suggestion will work if I make the address field an html field I think. I'll try it later. Right now the best laid plans of mice and men .... My big idea just hit the buffers with an "Internal Error" notice and there's nothing in the logs to say why...
by rocketman
Wed Mar 11, 2009 2:38 pm
Forum: General discussion and questions about Aware IM
Topic: Return Character
Replies: 11
Views: 15766

Tom, I have a similar question. I've created a non aware BO and a very simila BO. The intention is to create a process to create instances in the new BO for every intance of the old BO. This is so I can do a lot of tidying up of the old - undisciplined data. I thought it would be good to hold addres...
by rocketman
Thu Mar 05, 2009 4:56 pm
Forum: General discussion and questions about Aware IM
Topic: How to update an attribute in SystemSettings
Replies: 11
Views: 15588

Hi Rolf, Without knowing too much about your app, another option might be to create a timestamp attribute actually in the Customer BO - maybe call it LastViewed. Then you create a rule of one line - customer.LastViewed = current_timestamp. You then need to click the "Advanced" tab in the rule and cl...