Search found 947 matches
- Mon Dec 21, 2020 6:16 pm
- Forum: Shell (User Interface)
- Topic: Entering tax information for city/town and county
- Replies: 3
- Views: 54
Re: Entering tax information for city/town and county
Property tax exist as a collection of objects that inherit from the PropertyTax object. It includes items such as: "AdditionalTax" "AssessmentTax" "CityTax" "CountyTax" When a new HUD order is created, it is created with three tax objects - CityTax, CountyTax, and an AssessmentTax. If you want to se...
- Mon Dec 21, 2020 6:13 pm
- Forum: Shell (User Interface)
- Topic: Entering multiple looans per order
- Replies: 14
- Views: 342
Re: Entering multiple looans per order
Property tax exist as a collection of objects that inherit from the PropertyTax object. It includes items such as: "AdditionalTax" "AssessmentTax" "CityTax" "CountyTax" When a new HUD order is created, it is created with three tax objects - CityTax, CountyTax, and an AssessmentTax. If you want to se...
- Wed Dec 16, 2020 6:56 pm
- Forum: Shell (User Interface)
- Topic: Lookup hotspot or dialog
- Replies: 1
- Views: 19
Re: Lookup hotspot or dialog
While "ILookupsQuickPicker" is a publicly visible interface, the implementation is not public. Therefore we do not support others using our implementation. The logic behind the lookup code dialogs are all internal so not available for third party use. To replicated it, you would have to implement yo...
- Wed Dec 16, 2020 3:20 pm
- Forum: ReadyDoc Development
- Topic: Order.Properties.Taxes.BuyerTax.Amount
- Replies: 9
- Views: 1161
Re: Order.Properties.Taxes.BuyerTax.Amount
Many languages over time have differed on what the index is of the first index. In ReadyDoc coding, it starts with 1.
In C# - it doesn't matter because you asked a question in the "ReadyDoc Development" forum.
In C# - it doesn't matter because you asked a question in the "ReadyDoc Development" forum.

- Mon Dec 14, 2020 9:55 pm
- Forum: General
- Topic: Security Integration w/4.3.41
- Replies: 1
- Views: 23
Re: Security Integration w/4.3.41
Since I do not know what you are writing to the SPS_CERTPINS environmental variable - presumably something like: // Example code enabling two separate servers with individual PINs. Environment.SetEnvironmentVariable("SPS_CERTPINS", "http://localhost:8080/|F351BA;http://localhost:8080/dev|F351BA") Tr...
- Tue Dec 01, 2020 12:17 pm
- Forum: ProForm (Order Tracking)
- Topic: Commercial Statement Order - Recording Charges Bugs?
- Replies: 2
- Views: 31
Re: Commercial Statement Order - Recording Charges Bugs?
Glad you got it working!
- Tue Nov 24, 2020 3:01 pm
- Forum: Integration Development
- Topic: 360 Integrations
- Replies: 2
- Views: 61
Re: 360 Integrations
I have had to pass this question to a group that can answer this question. Unfortunately, many people are out this week so we may not have an answer until next week.
Sorry for the potentially slow turn around but it is in the queue.
Sorry for the potentially slow turn around but it is in the queue.
- Tue Nov 24, 2020 2:50 pm
- Forum: ProForm (Order Tracking)
- Topic: Submit order to WorkFlow
- Replies: 2
- Views: 53
Re: Submit order to WorkFlow
I have had to pass this question to a group that can answer this question. Unfortunately, many people are out this week so we may not have an answer until next week.
Sorry for the potentially slow turn around but it is in the queue.
Sorry for the potentially slow turn around but it is in the queue.
- Thu Nov 19, 2020 3:47 pm
- Forum: Custom Order Rules
- Topic: Endorsement Custom Field
- Replies: 3
- Views: 57
Re: Endorsement Custom Field
No worries. The "Custom Order Rules" forum is reserved for a type of Select rules written in Python. In the future, use the "Integration Development" forum or use a forum under it if it is a better fit. That way I know which language you want the answer in. :) For C#, the field code is the property ...
- Thu Nov 19, 2020 2:38 pm
- Forum: Custom Order Rules
- Topic: Endorsement Custom Field
- Replies: 3
- Views: 57
Re: Endorsement Custom Field
We have to treat the hash symbol specially since it is not a valid character in the body of Python code - but it is a valid character for a Python function. (Yes - it's strange.) What we do is create a temporary name for the function where we put our code then rename it later. For instance, I have a...