Search found 75 matches

by tmeisinger
Wed Jan 10, 2018 4:09 pm
Forum: Integration Development
Topic: Version of Select client is not supported by the Server
Replies: 1
Views: 746

Version of Select client is not supported by the Server

Installed Select version 4.3.50811.37 on a Virtual Test Box and it is working fine. I then recompiled my API code with the new SDK DLL's (version 4.3.50811.27) and I'm unable to TryAuthenticate. Receiving "This version of the Select client is not supported by the server." Can you point me ...
by tmeisinger
Thu Dec 07, 2017 10:28 am
Forum: Integration Development
Topic: Trigger After Posting Transaction
Replies: 2
Views: 764

Re: Trigger After Posting Transaction

I should clarify, if I Post an existing Pending Receipt, the Events Fire. If I add a Receipt, and Post it, I never get an Event to Fire for the Receipt.
by tmeisinger
Thu Dec 07, 2017 9:50 am
Forum: Integration Development
Topic: Trigger After Posting Transaction
Replies: 2
Views: 764

Trigger After Posting Transaction

I want to check to make sure we haven't received Cash equivalent payments from a Buyer totaling over $10,000 (IRS Rule). When I add a Receipt for a Cashier's Check, my Server code is not firing on Transaction Changing or Changed for the Receipt. Shouldn't a Posted Receipt fire the Transaction events...
by tmeisinger
Tue Sep 05, 2017 12:23 pm
Forum: Custom Order Rules
Topic: Changing Formula to COR
Replies: 5
Views: 2029

Re: Changing Formula to COR

It was saying module compilation error, with no other details. Each COR (had a few) were working fine with no Errors, but still couldn't save the Order. After repeated, saving by adding a space here or there, deleting and recreating (copy, delete, add, paste, ...) I was finally able to get the Order...
by tmeisinger
Fri Sep 01, 2017 9:05 am
Forum: Custom Order Rules
Topic: Changing Formula to COR
Replies: 5
Views: 2029

Re: Changing Formula to COR

Thanks Bob. Somehow I was able to save my COR yesterday, even though it had errors. Today I fixed it with your advice and now I can't save the Order because of a compilation error. Should have gotten that yesterday, but everything is fine now? I deleted every module for the order and still can't sav...
by tmeisinger
Thu Aug 31, 2017 10:52 am
Forum: Custom Order Rules
Topic: Changing Formula to COR
Replies: 5
Views: 2029

Changing Formula to COR

I want to move a Formula to a COR. Is there any way to call the RateTableCalc function from COR? I can handle changing the field references. From Formula: RateTableCalc({{Order.Title.LoanPolicies[1].SplitCalculation.RateTable.RateScheduleName}}, 1, {{order.title.TitleInsuranceCalculations[1].LoanPol...
by tmeisinger
Tue Jun 13, 2017 10:59 am
Forum: Integration Development
Topic: VS2017?
Replies: 2
Views: 654

Re: VS2017?

Thanks
by tmeisinger
Mon Jun 12, 2017 10:52 am
Forum: Integration Development
Topic: VS2017?
Replies: 2
Views: 654

VS2017?

Can we upgrade to VS2017 and will it be compatible with Select SDK for v4.1?
by tmeisinger
Wed Dec 14, 2016 12:23 pm
Forum: Integration Development
Topic: Commitment Exceptions with Hyperlink
Replies: 10
Views: 2298

Re: Commitment Exceptions with Hyperlink

Well, maybe not perfect, but here is the work around I came up with for Hyperlinking in an API created Exception. I loop through the Exceptions and grab the TEXT for the Exception and the LINK for the Exception. I place the Link at the end of the exception by using 'Note: View Document ' and placing...
by tmeisinger
Tue Dec 13, 2016 10:40 am
Forum: Integration Development
Topic: Commitment Exceptions with Hyperlink
Replies: 10
Views: 2298

Re: Commitment Exceptions with Hyperlink

OK, I downloaded the RichTextBoxLinks library, compiled, referenced and created a RTB with a Link and it didn't quite work via the API. My abbreviated code: Dim ExceptionObject As Object = Order.CreateNew("Exception") ExceptionObject.Code = (7 + CInt(readerExceptions("exceptionNumber&...