Search found 1290 matches

by BobRichards
Mon Jul 18, 2016 10:47 am
Forum: Integration Development
Topic: Unable to hotspot to target field
Replies: 9
Views: 1414

Re: Unable to hotspot to target field

I am unable to replicate your error. I am using this code fragment to generate an error for a custom order property when the order is saved. Have you restarted the server to make sure all the new custom fields are loaded? Is the custom type a "Text" type? os.OrderSaving += (o, e) => { e.Ad...
by BobRichards
Thu Jul 14, 2016 11:15 am
Forum: Integration Development
Topic: OverLayOrder
Replies: 3
Views: 660

Re: OverLayOrder

OrderOverlaySettings is a wrapper around various collections that hold references to items you want to import from a source order into your current order. All of the properties are readonly since they are collections that you will add items you want to import (i.e. to specify a contact to import, ge...
by BobRichards
Wed Jul 13, 2016 3:38 pm
Forum: Integration Development
Topic: Unable to hotspot to target field
Replies: 9
Views: 1414

Re: Unable to hotspot to target field

Please share your source code for this section.
by BobRichards
Wed Jul 13, 2016 11:55 am
Forum: Integration Development
Topic: OverLayOrder
Replies: 3
Views: 660

Re: OverLayOrder

OrderOverlaySettings will add items to your current order. You must then save the current state of the order to retain the changes. So the steps would be: Open or create an order with IOrderStore.NewOrder(...), IOrderStore.OpenOrder(...), or use active order. Modify the order (many any ways includin...
by BobRichards
Fri Jul 08, 2016 12:41 pm
Forum: Integration Development
Topic: Possible error in documentation
Replies: 5
Views: 1108

Re: Possible error in documentation

The logic is still sound. SelectServer is only used to get the IOrderStore and IErrorList interfaces. My point in your original problem was that your "originalAttachment.AttachmentPath" specified a file and not a folder in the attachments - that's why the interface was returning an IAttach...
by BobRichards
Fri Jul 08, 2016 11:20 am
Forum: Integration Development
Topic: Possible error in documentation
Replies: 5
Views: 1108

Re: Possible error in documentation

Looks like your path fetches an attachment file - not an attachment folder. You need to be mindful of what type of object your path specifies. Try changing your cast and folderItem type to IAttachmentFile.
by BobRichards
Wed Jul 06, 2016 8:42 am
Forum: Integration Development
Topic: Problems setting County on a property
Replies: 18
Views: 2274

Re: Problems setting County on a property

It is up to the developer to use whatever business logic is necessary. Select passes in the context from the order (in your case the Address object) and the matching lookup table rows (with all the colums for each row). It is possible that your logic may need to examine multiple columns to validate ...
by BobRichards
Tue Jul 05, 2016 6:07 pm
Forum: Integration Development
Topic: Problems setting County on a property
Replies: 18
Views: 2274

Re: Problems setting County on a property

You don't need to do a second search on the table in the handler. Select passes you the matching possibilities in the LookupRowSelectionEventArgs. You can get to each column entry in the table by referencing them as below. See the ILookupRow interface in the SDK for ways to reference the columns. IL...
by BobRichards
Tue Jul 05, 2016 10:48 am
Forum: Integration Development
Topic: AddError - Getting 2 Errors
Replies: 2
Views: 472

Re: AddError - Getting 2 Errors

We have identified this is a known issue that has been logged. No ETA at this time.
by BobRichards
Tue Jul 05, 2016 10:30 am
Forum: Integration Development
Topic: AddError - Getting 2 Errors
Replies: 2
Views: 472

Re: AddError - Getting 2 Errors

This is to let you know that we are working on a resolution to this issue. The July 4th holiday has interfered with a more prompt response. Sorry.