Search found 105 matches

by chris.brady
Wed Aug 24, 2016 11:34 am
Forum: General
Topic: Trigger an event without saving an order
Replies: 1
Views: 788

Trigger an event without saving an order

Is there a way, without opening or saving an order, to trigger a server package to fire off one of its event handlers? Specific example: we have a server package that extracts a bunch of order data in the OrderSaved event, and saves it to our database tables. We have a separate utility with the same...
by chris.brady
Thu Jun 23, 2016 1:20 pm
Forum: Integration Development
Topic: Server package order changes not reflected in open tab
Replies: 12
Views: 3573

Re: Server package order changes not reflected in open tab

Sure. This method is attached to the OrderSaving event. public void AutoAddDeliverUnderwriterPolicyAndRemittance(object sender, OrderSavingEventArgs args) { dynamic order = args.Order; IEnumerable<dynamic> tasks = order.Tasks; try { dynamic task = tasks.Where(x => x.Description == "Deliver Unde...
by chris.brady
Thu Jun 23, 2016 12:56 pm
Forum: Integration Development
Topic: Server package order changes not reflected in open tab
Replies: 12
Views: 3573

Re: Server package order changes not reflected in open tab

So far, most changes made in the server package during OrderSaving is reflected on the client after the save completes. However, we've noticed with Checklist tasks that modifying the task status within the server package isn't reflected on the client until the order is reopened. Specifically, when s...
by chris.brady
Sat May 14, 2016 8:25 pm
Forum: Integration Development
Topic: 4.1 Security Error after Upgrade
Replies: 9
Views: 1206

Re: 4.1 Security Error after Upgrade

We've got shell packages targeting 4.6.1 that work fine with SP4.1. Any reasons why external apps logging into the mid-tier must use 4.6? Oversight? I don't recall seeing this called out in the release notes we received. if it's there, I would have called it out in shiny red text.
by chris.brady
Fri May 13, 2016 9:28 am
Forum: Shell (User Interface)
Topic: Custom Start Page
Replies: 3
Views: 1021

Re: Custom Start Page

Has this bug been fixed in the latest release (4.1)? If so, can you provide an example for how to implement this registration attribute?
by chris.brady
Thu Feb 18, 2016 1:58 pm
Forum: Integration Development
Topic: Get or Test Formula Results in API
Replies: 1
Views: 459

Get or Test Formula Results in API

In the API, is there a way to see what the results of a formula would be, without actually setting the formula to an order property?

It's essentially the same functionality you see when using the formulas editor and hitting F5/clicking the play/execute button.
by chris.brady
Wed Feb 03, 2016 3:37 pm
Forum: Integration Development
Topic: CDF Section E fees and payees
Replies: 1
Views: 534

CDF Section E fees and payees

In Section E of the CDF, when dealing with line 1 – Recording charges, what is the best way to programatically add multiple fees so that each fee is attributed to a different payee? When working with a HUD, we set the Hud-To on the charge line, and when we create a new fee, the payee record is autom...
by chris.brady
Thu Nov 19, 2015 4:11 pm
Forum: Integration Development
Topic: Recording/Transfer charge amount calculation
Replies: 3
Views: 748

Re: Recording/Transfer charge amount calculation

Understood, but we're still curious if there's a way to intercept a calculation, or if that pipeline is locked down.
by chris.brady
Wed Nov 18, 2015 1:42 pm
Forum: Integration Development
Topic: Recording/Transfer charge amount calculation
Replies: 3
Views: 748

Recording/Transfer charge amount calculation

Currently for these types of charges (in the 1200 section of the HUD, for example), the transfer tax amount is calculated based on either sales price or loan amount, depending on whether the document type is Deed or Mortgage. We'd like to know if there's a way in the API to intercept the auto-calcul...
by chris.brady
Tue Oct 20, 2015 10:18 am
Forum: ProForm (Order Tracking)
Topic: Event fired when an order is closed
Replies: 4
Views: 2989

Re: Event fired when an order is closed

Is there a more appropriate way to monitor for a closed order event on the client in Cameron? The suggested method worked great in Boylan, but in Cameron, it appears e.Frame.GetProperty("Order") returns an order when the Documents tab is closed, so we can't determine if it's an order tab o...