Search found 1290 matches

by BobRichards
Tue Jul 11, 2017 5:39 pm
Forum: ReadyDoc Visibility Conditions
Topic: Custom Fields
Replies: 1
Views: 3258

Re: Custom Fields

Sorry. You need the IOrderItem interface to retrieve custom fields and it is not available here since you cannot import the library.
by BobRichards
Tue Jul 11, 2017 5:37 pm
Forum: ReadyDoc Visibility Conditions
Topic: Visibilty Conditions Examples
Replies: 6
Views: 17644

Re: Visibilty Conditions Examples

1. If Property State = “KY” # Get state for first property. state = Order.Properties[0].Address.State # Return True if there is a state object and it matches. return state and state.Code == 'KY' 2. If Property State in [“IN”, “KY”, “OH”] # Get state for first property. state = Order.Properties[0].Ad...
by BobRichards
Tue Jul 11, 2017 5:04 pm
Forum: Integration Development
Topic: How to reference CSS sections in a commercial order.
Replies: 3
Views: 864

Re: How to reference CSS sections in a commercial order.

Correct. So for those that are wondering how to add new section, open Select and navigate to the "Statement Charges" screen (if you have permission). Click on one of the section names in blue (such as Total Consideration ) and a new screen pops up that allows you to add a new section. This...
by BobRichards
Tue Jul 11, 2017 4:04 pm
Forum: Integration Development
Topic: Getting changes between order versions
Replies: 1
Views: 621

Re: Getting changes between order versions

Not without opening the current and previous order and exhaustively comparing them.
by BobRichards
Tue Jul 11, 2017 4:02 pm
Forum: Integration Development
Topic: How to reference CSS sections in a commercial order.
Replies: 3
Views: 864

Re: How to reference CSS sections in a commercial order.

Commercial orders are structured where each settlement statement (CSS, below) has a set of sections that you can use LINQ to filter on the "Code" property. Once you have the section, you can inspect its Lines collection. The list of sections is below: CON - Total Consideration PRO - Prorat...
by BobRichards
Thu Jun 22, 2017 2:32 pm
Forum: Integration Development
Topic: RTF Format Error
Replies: 5
Views: 1140

Re: RTF Format Error

I see no error when inserting your RTF text into a Windows RichTextBox. When I do so, it displays "CUSTOMER INFO" in red. If I copy the text to a file and change its file extension to "rtf", it will display properly in Word and WordPad. Select seems to be performing as expected. ...
by BobRichards
Thu Jun 22, 2017 1:39 pm
Forum: Integration Development
Topic: Expose web service through server package
Replies: 1
Views: 569

Re: Expose web service through server package

The scope of this question is too large to address in this forum. If you need further information then you may want to contact the Custom Software Group at SoftPro.

Additionally, the files referered to in the prior topic in January 2015 are no longer available.
by BobRichards
Thu Jun 22, 2017 11:02 am
Forum: Integration Development
Topic: Accessing CDF or HUD from a policy
Replies: 1
Views: 643

Re: Accessing CDF or HUD from a policy

In all honesty - the way I do it is use a test app that does nothing but open an existing order and use the Visual Studio "Locals" window to navigate within the IOrder to determine how the parts are related. Also, the Field Code Browser in the Select Client is fairly accurate. The followin...
by BobRichards
Wed Jun 21, 2017 3:03 pm
Forum: Integration Development
Topic: Printing Checks
Replies: 4
Views: 1157

Re: Printing Checks

As in a previous post (Print Check), the setup for the check reprint operation is fairly complex and is beyond the scope of this forum. If you need further information then you may want to contact the Custom Software Group at SoftPro.
by BobRichards
Tue Jun 20, 2017 10:52 am
Forum: Integration Development
Topic: Cannot access member error in tasking
Replies: 1
Views: 671

Re: Cannot access member error in tasking

Our model hasn't changed for that property. Let's try something simple. Is the field read-only or locked? Make sure that the dynamics are assuming the desired type at runtime by removing them: IList tasks = (IList)(((IOrder)order).GetProperty("Tasks")); IOrderItem closingAndFunding = ((IOr...