Search found 54 matches

by Phil Barton
Mon Nov 10, 2008 10:03 am
Forum: General
Topic: HudLine 700 Disbursement Section
Replies: 1
Views: 646

Re: HudLine 700 Disbursement Section

Thank you for pointing this out. A future release will contain accessor methods and properties to this particular interface.
by Phil Barton
Fri Nov 07, 2008 5:17 pm
Forum: Shell (User Interface)
Topic: Get IOrder of current context in Snap Section
Replies: 11
Views: 1502

Re: Get IOrder of current context in Snap Section

The following are available:

Order
IsRegisterOpen
TrustAccountId
LedgerId
by Phil Barton
Fri Nov 07, 2008 4:28 pm
Forum: Shell (User Interface)
Topic: Get IOrder of current context in Snap Section
Replies: 11
Views: 1502

Re: Get IOrder of current context in Snap Section

I think you should be fine to use it in that event handler.
by Phil Barton
Fri Nov 07, 2008 1:45 pm
Forum: General
Topic: Field Codes and Reflection
Replies: 4
Views: 882

Re: Field Codes and Reflection

If you use reflection on the API interfaces, you should be able to get an accurate listing of available fields. However, it will be a listing that is larger than that which is shown in the Field Code Browser in the SoftPro Select application. The API interfaces contain all the field codes listed in ...
by Phil Barton
Fri Nov 07, 2008 12:25 pm
Forum: General
Topic: Field Codes and Reflection
Replies: 4
Views: 882

Re: Field Codes and Reflection

You are correct in that we do not use reflection to populate the field code browser. It uses a different means to determine which fields are available for display in the list. These fields translate into fields that are usable in formulas, documents, etc. The API, however, exposes more fields than a...
by Phil Barton
Fri Nov 07, 2008 9:14 am
Forum: Shell (User Interface)
Topic: Get IOrder of current context in Snap Section
Replies: 11
Views: 1502

Re: Get IOrder of current context in Snap Section

Another possible way for you to retrieve the IOrder in the snap section is: IWindowFrame frame = base.GetService<IWindowFrame>(); IOrder order = frame.GetProperty("Order") as IOrder; Don't make this call in the costructor, though, in that it may fail and cause the snap section not to insta...
by Phil Barton
Tue Oct 28, 2008 10:34 am
Forum: Business Rules
Topic: How to detect SA when Invoice line items are assigned
Replies: 2
Views: 3934

Re: How to detect SA when Invoice line items are assigned

If I understand your requirement correctly, you want to prevent a contact (in this case the settlement agent) from being deleted if that contact has a related item on an invoice line - similar to the functionality of the HUD lines. This functionality is not contained within a business rule as are ot...
by Phil Barton
Tue Oct 21, 2008 10:19 am
Forum: Shell (User Interface)
Topic: SnapSections Changes
Replies: 18
Views: 2413

Re: SnapSections Changes

What is the context of the Timeline snapsection?
by Phil Barton
Tue Oct 14, 2008 10:21 am
Forum: Business Rules
Topic: No Validation messages display when OC fields are cleared
Replies: 1
Views: 3511

Re: No Validation messages display when OC fields are cleared

Clearing a field by using the F2 key does not trigger a validation check in that the system is returning to a known, valid default state for that particular data item.
by Phil Barton
Tue Oct 14, 2008 9:46 am
Forum: Business Rules
Topic: Disabling validation when loading a Contact from the CLT
Replies: 4
Views: 4070

Re: Disabling validation when loading a Contact from the CLT

That is not possible. The validations fire when a specific data item (related to the validation) is filled with data. We currently don't have any flags to disable when filling in from a lookup table.