Search found 82 matches

by dlerickson
Fri May 20, 2016 3:07 pm
Forum: General
Topic: Title Insurance Calculations/Underwriter
Replies: 10
Views: 2186

Re: Title Insurance Calculations/Underwriter

Back to this after a bit of a lull. What are all of the conditions that would lock the Underwriter property on a TitleInsuranceCalculation, and how can these be mitigated? The specific instance that I'm running into problems with is trying to reconcile entries on Closed/Cancelled/etc. orders that sh...
by dlerickson
Wed Mar 23, 2016 2:32 pm
Forum: General
Topic: CDF Fees
Replies: 4
Views: 1326

CDF Fees

What's the proper way to programmatically navigate to the Fees collection for a particular CDF charge? There is no path in the Field Code Browser for it. The particular example I'm looking at is Section E/Recording Fees, and the Fee breakdown in the tabbed grid on the bottom of the Charge popup scre...
by dlerickson
Wed Feb 17, 2016 1:55 pm
Forum: General
Topic: Settlement Agent/SellingAgentBrokers
Replies: 3
Views: 1081

Re: Settlement Agent/SellingAgentBrokers

Thanks...so far, so good. One further question, is this the proper way to tie it back to the Order? Doing a straight join on the Id# fields does not seem to work properly. where contact.RootId# = [Order].RootId# and (contact.Id# between [Order].Id# and [Order].LastId#) and contact.ContactType = 22 -...
by dlerickson
Tue Feb 16, 2016 8:39 pm
Forum: General
Topic: Settlement Agent/SellingAgentBrokers
Replies: 3
Views: 1081

Settlement Agent/SellingAgentBrokers

I'm trying to get SQL join data from an Order to both the SettlementAgent and SellingAgentBroker data. None of the key relationships in SQL seem to be mapping a clear path to this data. Here's a list of the Field Code Browser equivalents of what I need for each: SettlementAgent: Order.SettlementAgen...
by dlerickson
Wed Jan 20, 2016 1:41 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2655

Re: Check Processing: Order Number

Thanks much, that should do the trick. One other question: is there a way to isolate only checks from other types of ledger documents? Or is that even a relevant question (again, I'm unfamiliar with this area of Select)?
by dlerickson
Wed Jan 20, 2016 11:42 am
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2655

Re: Check Processing: Order Number

Ah, right. That was just from visually inspecting the IPrintJob instance at a breakpoint in a debug session. Sorry that I wasn't clear on that. I did copy the value of the Context URI during one of the debug inspections and it was as follows: {[Context, sp-select://./reporting/report?instance=ea0d02...
by dlerickson
Tue Jan 19, 2016 7:34 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2655

Re: Check Processing: Order Number

We actually don't do any of that. It's pretty simple code (irrelevant bits redacted): class BarcodePrintJobHandler : PrintJobHandler { ... protected override PrintJobHandlerResult OnProcess(IPrintJob printJob) { var firstItem = printJob.Items.First(); if (firstItem != null && printJob.Proper...
by dlerickson
Tue Jan 19, 2016 6:00 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2655

Re: Check Processing: Order Number

Actually, that was a response to the PM on our team. We've implemented that code successfully for most of the documents, but when trying to update this to include check documents, no Properties item keyed with "Order" exists, and there appears to be no way to trace back to it.
by dlerickson
Mon Jan 18, 2016 1:13 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2655

Check Processing: Order Number

Is it possible to trace a check to an Order Number in a Print Job Handler? This works well with other document types, but I see no properties in the PrintJob items on a check that would directly point back to an Order. The closest I can find that has any promise is to pull the Document ID out of the...
by dlerickson
Mon Jan 18, 2016 1:09 pm
Forum: General
Topic: MISMO Import/Export
Replies: 3
Views: 1278

Re: MISMO Import/Export

Thanks for the reply. Seeing as how there's no direct API implementation as of right now, would it be possible to hook into the 360 process and intercept the XML I/O stream (caveat: I'm not familiar with how 360 works)?