Encompass SDK – New Lock request

The following code creates a new Lock Request on an existing loan. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessEnums; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Loans; using EllieMae.Encompass.BusinessObjects.Loans.Logging; class LoanReader { public static void Main(string[] args) { // Open the session to the remote server Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); // Open and lock …

Encompass SDK – Create a loan file using codes

The following code creates a new loan, sets the value of several fields, and then commits the loan to the database. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Loans; class LoanReader { public static void Main() { // Open the session to the remote server Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); …

Encompass web customization

What is the ICE Secure Scripting Framework? Whenever an ICE Mortgage Technology product allows for the injection of custom functionality, it does so using a technology framework known as the ICE Secure Scripting Framework (SSF). The ICE Secure Scripting Framework isolates the third-party’s customizations away from the host application (e.g., Encompass) by loading the custom …

Purchase advice form – settings

Purchase Advice Form Use the Purchase Advise Form settings to create two types of template information that users can select from the Purchase Advice Form. The Payouts Dropdown List contains descriptions of commonly used payouts. The Purchase Advice Template list contains complete templates that populate multiple payout lines with both a description and the expected …

Note or Purchase date

Note or Purchase Date The Note or Purchase Date displayed will depend on the Channel (field ID 2626) on the Borrower Summary – Origination screen. • If the Channel is “Correspondent”, the Purchase Date (field ID 3567) from the The correspondent Purchase Advice Form is displayed. • If the Channel is “Banked-Retail” or “Banked-Wholesale”, the …

UCD not generating issue

In the last 10-15 days, there are some issues coming up that Freddie Mac UCD is not generating. Clearly here, Closing Disclosure, Closing Disclosure alternate, and Closing disclosure seller copies system want to see, but only UCD.X1 i.e CD is generating but the other two UCD.X3 and UCD.X5 are not generating. It has a very …

What is buy side and sell side pricing in secondary registration tool in encompass and how to use it?

In the context of secondary registration tools in Encompass, “buy side” and “sell side” pricing refer to different approaches for determining the pricing of loans or mortgage-backed securities (MBS) in the secondary market. Buy Side Pricing: Buy-side pricing refers to the pricing approach used by buyers of loans or MBS in the secondary market. In …

Encompass codes that write the actual or expected closing date

Here are codes that write the actual or expected closing date for every loan in the “My Pipeline” folder that has been sent for processing. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessEnums; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Loans; using EllieMae.Encompass.BusinessObjects.Loans.Logging; class LoanReader { public static void Main() { // Open the session to the remote server …