Search found 170 matches

by tkilshaw
Tue Apr 18, 2006 8:53 pm
Forum: General discussion and questions about Aware IM
Topic: orphan children
Replies: 1
Views: 5164

orphan children

Class Account has reference Task and rule: If Account.NextContact IS UNDEFINED AND SystemSettings.DaysToNextContact IS DEFINED Then CREATE Task WITH Task.Account=Account, Task.AddedBy=LoggedInSystemUser, Task.AssignedTo=Account.AssignedTo, Task.Details='Next Contact for account: ' + Account.AccountI...
by tkilshaw
Mon Apr 17, 2006 8:48 pm
Forum: General discussion and questions about Aware IM
Topic: context problem
Replies: 1
Views: 4946

context problem

I have a process that runs at Admin initialization time. Among other things it creates a number of RegularUsers. Code goes like: If NOT(EXISTS RegularUser WHERE (RegularUser.LoginName='sp1')) Then CREATE Conact with Contact.FirstName='John', Contact.LastName='Brown' CREATE RegularUser WITH RegularUs...
by tkilshaw
Thu Apr 13, 2006 8:58 pm
Forum: Problem reports
Topic: initialize process works but no results shown
Replies: 1
Views: 5144

initialize process works but no results shown

I have an initialization process set to run when a SalesPerson logs in. Its rule is: FIND 'Accounts: All Active for User' The log shows that this is executed and finds three accounts. But they are never displayed. How do I accomplish this without requiring the user to use a special URL? thanks, Terry
by tkilshaw
Wed Apr 12, 2006 7:11 pm
Forum: Problem reports
Topic: Defining Custom Form Sections
Replies: 1
Views: 5368

Defining Custom Form Sections

I took a simple form with a single section. I exported the section and looked at it in a browser. It had no styles. It was displayed in gray. The original two columns were shown as a single column. I added a new section to the original form, and imported the code I had just exported with no changes....
by tkilshaw
Wed Apr 12, 2006 5:10 pm
Forum: Problem reports
Topic: SystemSettings issues
Replies: 5
Views: 10662

So I tried using View instead of Enter. The problem persisted.

I tried using:

PICK FROM ALL SystemSettings NO CONFIRMATION FOR ONE
VIEW SystemSettings USING 'Contact Or Company'

And the problem still persists! It still brings up a list of SystemSettings with one item in it!

Terry
by tkilshaw
Wed Apr 12, 2006 4:57 pm
Forum: Problem reports
Topic: SystemSettings issues
Replies: 5
Views: 10662

I have sent my code to you by email.

I could use a bit more explanation of Edit versus View. I don't quite grasp the differences and when it is preferable to use one rather than the other.

Terry
by tkilshaw
Wed Apr 12, 2006 12:00 am
Forum: Problem reports
Topic: SystemSettings issues
Replies: 5
Views: 10662

SystemSettings issues

I have a process whose only rule is: EDIT SystemSettings USING 'Contact Or Company' THis cause a list of SystemSettings to be displayed from which the user needs to pick the only SystemSettings instance that is displayed. After that my 'Contact Or Company' form is displayed. If I use: FIND ALL Syste...
by tkilshaw
Tue Apr 11, 2006 6:22 pm
Forum: General discussion and questions about Aware IM
Topic: references displayed as dropdowns
Replies: 5
Views: 10961

references displayed as dropdowns

Two issues with references displayed as dropdowns: 1) When the presentation for a reference attribute is set to Drop Down the referenced values are displayed in a drop down menu. On an ENTER form, for some reason, the field attached to the drop down already has a value set in it. Unless I preset its...
by tkilshaw
Tue Apr 11, 2006 4:05 pm
Forum: Problem reports
Topic: choice item bug
Replies: 4
Views: 9824

Precisely. This means that the same interface behaves differently depending on context. You are used to it. I have had to get used to it. It is confusing.

Terry
by tkilshaw
Mon Apr 10, 2006 11:32 pm
Forum: General discussion and questions about Aware IM
Topic: In Line issues
Replies: 1
Views: 5169

In Line issues

I have object Account with one to one reference MainContact to object Contact. When I set MainContact to In Line and use the Add a New Line button, after filling in the first name and last name fields and clicking the Create button on the Account form, I get an error that says the value of MainConta...
by tkilshaw
Mon Apr 10, 2006 5:07 pm
Forum: Problem reports
Topic: IS NEW makes roo many instances
Replies: 4
Views: 9053

Actually it looks like 5 instances are made.

One when the Account form first appears. Three when a main prospect is added and one when the Account Create button is clicked.

Terry
by tkilshaw
Mon Apr 10, 2006 4:52 pm
Forum: Problem reports
Topic: IS NEW makes roo many instances
Replies: 4
Views: 9053

IS NEW makes roo many instances

This rule in my Account object: If Account IS NEW Then CREATE AccountTransfer WITH AccountTransfer.Account=Account,AccountTransfer.TransferredBy=LoggedInRegularUser,AccountTransfer.TransferredTo=Account.AssignedTo Causes three instances of AccountTransfer to be created. Two of them are made by the t...
by tkilshaw
Mon Apr 10, 2006 3:51 pm
Forum: Problem reports
Topic: choice item bug
Replies: 4
Views: 9824

You say: "Integrity checker always displays the results of the previous check." This appears to be untrue. There are some circumstances where the integrity checker window appears after having run a check. For example, when it is not invoked directly, but is invoked in the process of svaing for a tes...
by tkilshaw
Fri Apr 07, 2006 10:46 pm
Forum: Problem reports
Topic: choice item bug
Replies: 4
Views: 9824

choice item bug

Add choice item to attribute choice list like: ----- Won't return calls ---- This produces an invalid auto-generated rule. Also using the Check Integrity item sometimes does not check integrity. I just brings up the Integrity window displaying the results of the previous check. Aware IM verin 1.5 bu...
by tkilshaw
Fri Mar 24, 2006 7:37 pm
Forum: General discussion and questions about Aware IM
Topic: presetting query values
Replies: 1
Views: 5220

presetting query values

For SalesManagers I have an Account query that displays a form with various fields including: AssignedToLoginName, a shortcut to RegularUser.LoginName. When used, if all fields are left empty all Accounts are found. I want to have similar functionality for SalesPersons, except that SalesPersons shou...