Search found 197 matches

by UnionSystems
Mon Mar 18, 2019 12:43 am
Forum: General discussion and questions about Aware IM
Topic: Background process with IN BATCHES OF 1
Replies: 3
Views: 6682

Re: Background process with IN BATCHES OF 1

We're emulating a background processing queue by having an object BackgroundRun that has attributes ExecString and Started . We have a process, periodically called by the AwareIM Scheduler which FINDS BackgroundRun with BackgroundRun.Started UNDEFINED. When found we "EXEC_STRING BackgroundRun.ExecSt...
by UnionSystems
Fri Feb 08, 2019 1:35 am
Forum: General discussion and questions about Aware IM
Topic: POLL: Are you comfortable with Failure Rules?
Replies: 6
Views: 7941

Re: POLL: Are you comfortable with Failure Rules?

We use Failure Rules to keep a history and also email us when a crucial process that should not have errors does fail. We typically have a rule like CREATE ErrorLog WITH ErrorLog.ProcessName='some_process_name',ErrorLog.Detail=ProcessError.Message,ErrorLog.Occurred=CURRENT_TIMESTAMP,ErrorLog.ps_Offi...
by UnionSystems
Mon Feb 04, 2019 12:06 pm
Forum: General discussion and questions about Aware IM
Topic: Files outside Tomcat
Replies: 1
Views: 3026

Re: Files outside Tomcat

I have always used absolute paths and I store paths in the database so the BSV can move between servers. Be interested to know if relative paths do work?
by UnionSystems
Mon Feb 04, 2019 7:51 am
Forum: Problem reports
Topic: Rename an Object called "Main"
Replies: 1
Views: 4666

Rename an Object called "Main"

Using the AwareIM configuration tool 8.1 build 2475 we accidentally renamed an Object "Main". When we renamed the object to its original value say "SomeOtherName" the configuration tool changed all the Form name and Form section names from "Main" to "SomeOtherName". This erroneous referencing was ca...
by UnionSystems
Fri Feb 01, 2019 7:02 am
Forum: General discussion and questions about Aware IM
Topic: Import CSV Files - Where Do They Disappear To?
Replies: 2
Views: 3893

Re: Import CSV Files - Where Do They Disappear To?

My vague recollection is after IMPORT ACTION runs the imported file is deleted on Windows but remains on MAC & Linux.

And the solution (if you want to keep the original file) is to create a COPY of the file before IMPORT action.

Yours in Friday afternoon haze.
by UnionSystems
Fri Jan 18, 2019 12:10 am
Forum: General discussion and questions about Aware IM
Topic: Alternative way to run process in "Background"
Replies: 2
Views: 3826

Alternative way to run process in "Background"

I've never been totally happy with the behaviour of a Process when you set it for "Background" operation by putting a number in the "Run in the background" option for that Process in the Configuration Tool. I've been trialling an alternative method which seems to behave OK and wanted to sanity check...
by UnionSystems
Mon Jan 14, 2019 12:26 am
Forum: General discussion and questions about Aware IM
Topic: 8.3 New Years Wish List - please add to list
Replies: 42
Views: 46352

Re: 8.3 New Years Wish List - please add to list

With increasing use of REST be nice to have a Category (folder) available within the Services node of the Business Spaces tree in the Configuration Tool .
by UnionSystems
Thu Jan 10, 2019 8:11 pm
Forum: General discussion and questions about Aware IM
Topic: Mac and WORD
Replies: 2
Views: 8924

Re: Mac and WORD

Hey Rocketman, Did you ever get Word on MAC working with AwareIM?
by UnionSystems
Mon Jan 07, 2019 8:55 am
Forum: General discussion and questions about Aware IM
Topic: LIST_LINE problem
Replies: 8
Views: 10028

Re: LIST_LINE problem

Hi,

Did you ever resolve this problem. I'm observing the same issue where it does not seem possible to apply an ORDER BY to a FIND in LIST_LINE()
by UnionSystems
Sat Jan 05, 2019 12:27 am
Forum: General discussion and questions about Aware IM
Topic: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING
Replies: 21
Views: 23923

Re: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING

What John has done in his demo video is fantastic. John would it be possible to include saving of the state of the query at the same time (so that users could define what columns are included)? Being able to save these as AwareIM objects so the client could recall them as a later time would be very ...
by UnionSystems
Sat Jan 05, 2019 12:25 am
Forum: Problem reports
Topic: LIST_TABLE() HTML output
Replies: 5
Views: 8797

Re: LIST_TABLE() HTML output

Sorry you do not seem to be understanding me. Yes I agree <th></th> is correct for cells of the first row of the table HTML. What is missing from the output of LIST_TABLE() for the first row is the <tr></tr> that should envelope that first row. This is some HTML I am getting from LIST_TABLE() <table...
by UnionSystems
Thu Jan 03, 2019 8:16 am
Forum: General discussion and questions about Aware IM
Topic: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING
Replies: 21
Views: 23923

Re: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING

What you have demonstrated is gold! My customers already like the inbuilt filtering in AwareIM queries. They would be extremely happy to be able to store those filter values into an AwareIM Object they could recall later Would it be possible to include the Query “Save State” data as well (ie so colu...
by UnionSystems
Wed Jan 02, 2019 4:43 am
Forum: Problem reports
Topic: LIST_TABLE() HTML output
Replies: 5
Views: 8797

Re: LIST_TABLE() HTML output

First line is

Code: Select all

<th></th><th></th><th></th>
where quantity of <th></th> will be determined by number of attributes requested
it should be ?

Code: Select all

<tr><th></th><th></th><th></th></tr>
by UnionSystems
Mon Dec 31, 2018 10:05 pm
Forum: General discussion and questions about Aware IM
Topic: Should Execution_Contexts Fill up?
Replies: 5
Views: 6890

Re: Should Execution_Contexts Fill up?

I though records only exists in Execution_Contexts if the process they represent has not completed. I also assume that Execution_Contexts is how AwareIM restarts a process if you shutdown AwareIM and the process is not completed running? I have observed processes that I cannot stop continuing even a...