Search found 7 matches

by kkellett
Tue Jan 02, 2024 1:04 pm
Forum: Automation Code Snippets
Topic: Formula Coding
Replies: 2
Views: 13877

Re: Formula Coding

Hello, When the formulas are stacked this way, the last one will "win" over the others. If we join the coding so it checks all of the contacts this should work: value = "" Iterate {{Order.Buyers}} From 1 To #{{Order.Buyers}} IF ((@.BankruptcyDistrictResults## = "no records&q...
by kkellett
Thu Mar 09, 2023 10:55 am
Forum: Integration Development
Topic: Formula for CSS
Replies: 2
Views: 3085

Re: Formula for CSS

Hi there, I've added to the formula the CSS section to count recorded documents. // eRecording Formula - Counts Documents being recorded and charges $4 per document Value = 0 //HUD Section If ({{Order.SettlementType}} = "HUD1" and {{Order.HUDOption.Use2009RESPARegulations}} = FALSE) Then /...
by kkellett
Wed Nov 30, 2022 4:43 pm
Forum: General
Topic: Set CDF Line to None
Replies: 1
Views: 3125

Re: Set CDF Line to None

In the CDF Line field, there is out of the box functionality that assigns the next available line if the charge has a dollar amount. While there is not a way to return None for a CDF Line field, we can use a commented formula to prevent the default functionality. This same method works in other fiel...
by kkellett
Thu Aug 25, 2022 4:30 pm
Forum: Automation Code Snippets
Topic: Dev-friendly way for Automation Rule snippet development?
Replies: 1
Views: 827

Re: Dev-friendly way for Automation Rule snippet development?

Hello, For Automation code snippets that evaluate whether the process should run, if there are issues with them, the Event Viewer will log errors on the Mid-tier server which are usually very helpful. For errors with Action Code snippets, they will be shown in the Automation Monitor. For debugging, ...
by kkellett
Thu Jul 28, 2016 11:18 am
Forum: Business Rules
Topic: Using Type Fields
Replies: 1
Views: 2676

Re: Using Type Fields

Thanks to Dan Chapin for finding the issue in this rule. Simply had the coding wrong for IF the Order Type if blank: from System import * from SoftPro.ClientModel import * from SoftPro.OrderTracking.Client import * from SoftPro.OrderTracking.Client.Orders import * # Edit the message below if you wan...
by kkellett
Thu Jul 28, 2016 10:11 am
Forum: Business Rules
Topic: Using Type Fields
Replies: 1
Views: 2676

Using Type Fields

I'm attempting a simple rule that Validates the Order Type when the Transaction Type is Purchase. The hotspot needs to be on the Order Type field. I suspect that the field "Type" being "IOrderType" means I need to code this field differently. On the 3rd to last line below, I beli...
by kkellett
Thu Oct 01, 2009 3:35 pm
Forum: Server
Topic: Select 2.4 Event Notifications
Replies: 6
Views: 1647

Re: Select 2.4 Event Notifications

In 2.4, the server's install folder is located at C:\Program Files\Common Files\SoftPro\Select Server\Instances\spssvr<InstanceName>\ The sps.exe tool is now located there. When handling the event notification, you are passed two arguments: sender and args. The sender is an xml string that can be us...