Search found 545 matches

by BobK
Thu Nov 12, 2009 10:40 pm
Forum: Problem reports
Topic: Rererence field starts out with 'This field is required' err
Replies: 3
Views: 4071

Rererence field starts out with 'This field is required' err

I have 2 BOs, Acct and Orders. Orders has an attribute called OrderAcct which is of type Acct and Value must be provided. On the Orders main form, OrderAcct is displayed as a Drop Down, Generate "Add New" button is checked and so is Fetch records dynamically as user types. When I bring up the Orders...
by BobK
Thu Nov 12, 2009 1:45 pm
Forum: General discussion and questions about Aware IM
Topic: Query ASK AT RUNTIME date range
Replies: 10
Views: 16039

Excuse the typo. I got the '<=' and '>=' in the wrong order in the above example.
by BobK
Thu Nov 12, 2009 1:30 pm
Forum: General discussion and questions about Aware IM
Topic: Query ASK AT RUNTIME date range
Replies: 10
Views: 16039

It has been awhile since I did this and I forgot to mention the following: After doing the above, go to the 'Rule Form' tab. It should display something like: FIND DateSearches WHERE DateSearches.EndDate<=?'End Date' AND DateSearches.EndDate>=?'End Date' Change it to something like (change in bold):...
by BobK
Thu Nov 12, 2009 1:15 pm
Forum: General discussion and questions about Aware IM
Topic: Query ASK AT RUNTIME date range
Replies: 10
Views: 16039

Yes it is possible.


Just have two where clauses


Order.EnteredDate >= (Ask at run-time) AND
Order.EnteredDate <= (Ask at run-time)
by BobK
Thu Nov 05, 2009 10:37 pm
Forum: General discussion and questions about Aware IM
Topic: Navigation after create
Replies: 22
Views: 26204

Try

ENTER NEW BO WITH BO.attribute = 'value'
by BobK
Wed Nov 04, 2009 9:18 pm
Forum: General discussion and questions about Aware IM
Topic: Custom Java Process Help
Replies: 9
Views: 7587

To me, your code looks like it should work. Since the error you are getting is: Process implementation component com.userguide.plugin is not found or has invalid format I am assuming that AwareIM can not find your custom process. Did you add your jar file to the CLASSPATH in setenv.bat and setenvCli...
by BobK
Tue Nov 03, 2009 8:58 pm
Forum: General discussion and questions about Aware IM
Topic: Custom Java Process Help
Replies: 9
Views: 7587

Bryan,

Here are a couple of suggestions:

1) Try changing the value in the configuration tool to com.userguide.plugin.GuideClass

2) In your java code your class needs to implement IProcess.
Change
public class GuideClass {
to
public class GuideClass implements IProcess {

Hope that helps
by BobK
Fri Oct 09, 2009 9:45 pm
Forum: Problem reports
Topic: Initializing Timestamp attribute // Date format MMMM
Replies: 9
Views: 17983

Pixerp,

Could you post how you are trying to use AS_TIMESTAMP.

I have been using it with no problems.
by BobK
Thu Oct 01, 2009 5:05 pm
Forum: General discussion and questions about Aware IM
Topic: Custom Java Process Help
Replies: 9
Views: 7587

Bryan, My plugin implemented a function. If you are trying to implement a custom process or channel, I am not sure how much, if any, of the following will apply. If you already have a jar file, here is what to do: 1) Move the jar file to AwareIM\Tomcat\shared\lib 2) (From page 6 of Programmers Refer...
by BobK
Wed Sep 30, 2009 9:23 pm
Forum: Problem reports
Topic: Problem Searching for Data using Forms
Replies: 2
Views: 3217

Problem Searching for Data using Forms

I am trying to run a query using a form. The form only has 1 field which is a reference atttribute. I want to find all object2's that have a reference to a certain object1. When I run the query, I get a java.lang.NullPointerException. The only information in any of the logs is the following from the...
by BobK
Wed Sep 30, 2009 7:43 pm
Forum: General discussion and questions about Aware IM
Topic: Custom Java Process Help
Replies: 9
Views: 7587

Bryan,

I have successfully implemented a Java plug in for AwareIM.

I don't think the jar file is saved in the bsv, so I don't know how helpful a sample bsv would be.

If you have any specific questions, I would be glad to try to answer them.
by BobK
Mon Sep 28, 2009 9:06 pm
Forum: General discussion and questions about Aware IM
Topic: Seeking opinions on error message location
Replies: 8
Views: 12768

I also agree that the above example looks good, but I wonder how it would look with 2 columns. For example, if Login Name was in column 1 and Password was in column 2. Since Password does not have an error, would it and all fields below it still line up with the fields in column 1. I have not update...
by BobK
Mon Sep 28, 2009 8:58 pm
Forum: General discussion and questions about Aware IM
Topic: Newbie Help - Changing Relationships
Replies: 6
Views: 5624

The reason why your origianl rule did not work

According to your first post above, your original action was: members.category.name = 'Senior Member' This code will update the name attribute in the current category object that is referenced in the members object. Since a category object already exists with the name attribute set to 'Senior Member...
by BobK
Tue Sep 08, 2009 7:03 pm
Forum: Problem reports
Topic: Process hangs application
Replies: 6
Views: 6523

If I understand you correctly, you have 4 NSCPers records with MemberStatus = 'P' and you want to create 4 Pending records. In your process, on the General tab, do you have anything in the 'For this Process' column. I think this should be empty. For your process try: Find NSCPers WITH NSCPers.Member...