Search found 303 matches

by Jhstephenson
Fri Oct 19, 2018 8:47 pm
Forum: General discussion and questions about Aware IM
Topic: Does unlimited really mean 'unlimited'?
Replies: 1
Views: 2585

Re: Does unlimited really mean 'unlimited'?

After playing with it some more it appears that the records do eventually get there, but only after much scrolling up and down. Even though it is set to 'Fetch records for all pages at once....'
by Jhstephenson
Fri Oct 19, 2018 7:07 pm
Forum: General discussion and questions about Aware IM
Topic: Does unlimited really mean 'unlimited'?
Replies: 1
Views: 2585

Does unlimited really mean 'unlimited'?

I have a query that should show records that do not have a Date Closed. I am grouping these records by a CaseType. When I specify that I want the display to be Unlimited, I define the Height to be 1200. Nothing complicated so far. I should get 1200 records out of 37000. Instead I get 100. If I chang...
by Jhstephenson
Wed Oct 17, 2018 5:58 pm
Forum: General discussion and questions about Aware IM
Topic: View logged in Users
Replies: 3
Views: 5219

View logged in Users

This is probably a dumb question, but I was wondering if there is a way to see a list of the users currently logged in to a BSV.

The reason is we would like to send a message to those users whenever we want to take the system down for period of time.
by Jhstephenson
Tue Oct 09, 2018 10:13 pm
Forum: General discussion and questions about Aware IM
Topic: Report Process FIND issue
Replies: 2
Views: 3531

Report Process FIND issue

I have a process that prepares a query for a report. My report works fine with the following: FIND CaseMaster WHERE CaseMaster.DateFiled>=PromptData.DateBeginning AND CaseMaster.DateFiled<=PromptData.DateEnding ORDER BY CaseMaster.CaseTypeDescription,CaseMaster.DateFiled IN BATCHES OF 100000 DISPLAY...
by Jhstephenson
Mon Sep 10, 2018 8:43 pm
Forum: General discussion and questions about Aware IM
Topic: Query Column Header Alignment Question
Replies: 7
Views: 10976

Re: Query Column Header Alignment Question

Thanks Jaymer, As a side to that... Is it possible to override the location of the actual data element on the grid? So, that Yes/No or Date fields get left justified instead of centered, or a Numeric is centered instead of right justified. The column settings options that you mentioned seem to only ...
by Jhstephenson
Fri Sep 07, 2018 8:25 pm
Forum: General discussion and questions about Aware IM
Topic: Query Column Header Alignment Question
Replies: 7
Views: 10976

Re: Query Column Header Alignment Question

I have the same question. Are there any examples of how to do this?
by Jhstephenson
Fri Sep 07, 2018 5:54 pm
Forum: General discussion and questions about Aware IM
Topic: Parse Full Name into First and Last Name attributes
Replies: 6
Views: 9846

Re: Parse Full Name into First and Last Name attributes

But apparently they only work with Derby. I use this extensively in MySql That's interesting. This is what it says in Appendix B of the User Guide: 4. The following functions are supported only in Cloudscape/Derby database: - WORD_NUMBER - WORDS_FROM_LEFT - WORDS_FROM_RIGHT I also tried this and it...
by Jhstephenson
Fri Sep 07, 2018 5:23 pm
Forum: General discussion and questions about Aware IM
Topic: Parse Full Name into First and Last Name attributes
Replies: 6
Views: 9846

Re: Parse Full Name into First and Last Name attributes

intra wrote:Maybe something along the lines of this.

FullString = John Smith

Firstname = SUBSTRING(FullString, 0,INDEX_OF(' ',FullString))
Surname = SUBSTRING(FullString, INDEX_OF(' ',FullString),LENGTH(FullString))

Thanks, that works.
by Jhstephenson
Fri Sep 07, 2018 5:02 pm
Forum: General discussion and questions about Aware IM
Topic: Parse Full Name into First and Last Name attributes
Replies: 6
Views: 9846

Re: Parse Full Name into First and Last Name attributes

ACDC wrote:
But apparently they only work with Derby.
I use this extensively in MySql
That's interesting. This is what it says in Appendix B of the User Guide:

4. The following functions are supported only in Cloudscape/Derby database:
- WORD_NUMBER
- WORDS_FROM_LEFT
- WORDS_FROM_RIGHT
by Jhstephenson
Thu Sep 06, 2018 10:05 pm
Forum: General discussion and questions about Aware IM
Topic: Parse Full Name into First and Last Name attributes
Replies: 6
Views: 9846

Parse Full Name into First and Last Name attributes

I have a Full Name attribute that I want to split into FirstName and LastName attributes. I thought I could use the WORDS_FROM_LEFT or WORDS_FROM_RIGHT functions to do this. But apparently they only work with Derby.

So, I am wondering what is the easiest way to do this in Aware?
by Jhstephenson
Mon Aug 06, 2018 5:17 pm
Forum: General discussion and questions about Aware IM
Topic: Cancel Process
Replies: 9
Views: 41188

Re: Cancel Process

Jaymer,

That would certainly make the process more efficient.

But, is that really going to impact the ability to Cancel a running process?

Jim
by Jhstephenson
Thu Aug 02, 2018 2:25 pm
Forum: General discussion and questions about Aware IM
Topic: Cancel Process
Replies: 9
Views: 41188

Re: Cancel Process

In this particular case the process does the following: FIND CaseNotes WHERE CaseNotes.Note='requested discovery' AND CaseNotes.NoteType IS UNDEFINED IN BATCHES OF 1 FIND mfNoteTypes WHERE mfNoteTypes.NoteType='REQUEST FOR DISCOVERY' INSERT mfNoteTypes IN CaseNotes.NoteType Pretty basic stuff really...
by Jhstephenson
Wed Aug 01, 2018 10:19 pm
Forum: General discussion and questions about Aware IM
Topic: Cancel Process
Replies: 9
Views: 41188

Re: Cancel Process

In my opinion, this issue is subject to each individual application. Rennur, see below... Things to check: 1) Incorrect/faulty design/use of Business object groups. No Business Object groups defined 2) Ensure all SHOW SECTION_START, SECTION_END in document templates are properly enclosed. This does...
by Jhstephenson
Mon Jul 30, 2018 5:46 pm
Forum: General discussion and questions about Aware IM
Topic: Cancel Process
Replies: 9
Views: 41188

Cancel Process

Is there some trick to Cancelling an Active Process? For example: I have a process that updates a certain attribute in a BO. I start the process and have it run in background after 5 seconds (Which is another topic in itself, because I don't know whose clock that 5 seconds runs on but it is more lik...