Search found 54 matches

by Phil Barton
Tue Jan 12, 2010 11:34 am
Forum: Shell (User Interface)
Topic: SnapSection Failure
Replies: 2
Views: 616

Re: SnapSection Failure

Typically, this error results from a failure in the constructor of the snap section or a failure in the Initialize(...) method of the snap section. That would be the point where I would start to look.
by Phil Barton
Wed Jan 06, 2010 5:56 pm
Forum: Integration Development
Topic: Datacollector insert fails to fire (a good) trigger
Replies: 2
Views: 719

Re: Datacollector insert fails to fire (a good) trigger

Due to changes made to support the new HUD GFE, ProForm and DataCollector no longer update an existing row. Rather, they delete the existing row and insert a new row. This may be the cause of the trigger not firing.
by Phil Barton
Mon Jan 04, 2010 12:13 pm
Forum: ProForm (Order Tracking)
Topic: SPS API - Creating New Orders with Joint Buyers/Seller
Replies: 3
Views: 824

Re: SPS API - Creating New Orders with Joint Buyers/Seller

Sanjay, The "Name" property on the IBuyer is automatically populated through business rules unless there exists a user-entered value within that property. The following code populates the people of a joint buyer. It properly updates the "Name" property of the IBuyer and appears p...
by Phil Barton
Thu Apr 16, 2009 1:08 pm
Forum: Integration Development
Topic: DefaultTemplate in the API
Replies: 3
Views: 898

Re: DefaultTemplate in the API

Yes, there is a way to specify the template(s) to be used during order creation. Within the OrderCreationSpec class, there is a property named Templates that is a List<string> (or List(Of String) in Visual Basic). You can use the Add(...) method to add the name of the template you wish to use. For e...
by Phil Barton
Fri Nov 21, 2008 11:51 am
Forum: Shell (User Interface)
Topic: Deleting Checklist and Requested Tasks
Replies: 2
Views: 609

Re: Deleting Checklist and Requested Tasks

The ChecklistTask and RequestedTask collections on the IOrder interface include a Remove(..) method and a RemoveAt(...) method. The Remove method takes as its parameter the object to remove; the RemoveAt method takes as its parameter the index into the collection of the object to remove. The followi...
by Phil Barton
Tue Nov 18, 2008 2:28 pm
Forum: Shell (User Interface)
Topic: Checklist Task deletion Error
Replies: 6
Views: 1072

Re: Checklist Task deletion Error

You will have to have delete permission for notes. Under the ProForm\Order\General category of permissions, there is a permission called Note with the rights of Add, Edit, Delete. You or a group you belong to mush have the Delete right in order to delete notes.
by Phil Barton
Tue Nov 18, 2008 11:35 am
Forum: Shell (User Interface)
Topic: Checklist Task deletion Error
Replies: 6
Views: 1072

Re: Checklist Task deletion Error

This has been identified as a bug in the application. As a workaround, deleted the notes individually off of the requested/checklist task first before deleting the task, itself.
by Phil Barton
Mon Nov 17, 2008 3:54 pm
Forum: Shell (User Interface)
Topic: Checklist Task deletion Error
Replies: 6
Views: 1072

Re: Checklist Task deletion Error

Let me research this and get back to you.
by Phil Barton
Wed Nov 12, 2008 3:54 pm
Forum: General
Topic: Custom Fields for OrderTasks
Replies: 4
Views: 845

Re: Custom Fields for OrderTasks

That column is being ignored. The objects that support custom fields are listed in the custom field editor's context dropdown in SPAdmin.
by Phil Barton
Wed Nov 12, 2008 3:29 pm
Forum: General
Topic: Custom Fields for OrderTasks
Replies: 4
Views: 845

Re: Custom Fields for OrderTasks

IChecklistTask and IRequestedTask objects do not support custom fields. They will not have the GetCustomField(...) and SetCustomField(...) methods on the interfaces.