Encompass – HTML Email Templates

HTML Email Templates Administrators can use the HTML Email Templates setting to set up company-wide templates for HTML emails that can be sent from the eFolder when requesting documents via the Request button, sending eDisclosures via the eDisclosure button, or sending files via the Send button. Encompass ships with one template for each category: document …

Encompass appraisal documents attachment by coding

The following code creates a new attachment to the loan and associates it with an existing Appraisal. using System; using System.IO; using EllieMae.Encompass.Client; 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 Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); // Open …

Tracked document Encompass – showing all attachments of a loan file using coding

The following code exports all of the attachments associated with the Appraisals in a loan. using System; using System.IO; using EllieMae.Encompass.Client; 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 Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); // Open and lock …

Organization hierarchy and Encompass development coding

The following code demonstrates how to display the entire organization hierarchy. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Users; class UserManager { public static void Main() { // Open the session to the remote server. We will need to be logged // in as an Administrator to modify the user accounts. Session session …

Persona and pipeline view

Create the default Pipeline view for the persona by configuring the columns that display on the Pipeline, the order in which they appear, the sorting order for the loan entries, and by applying search filters to the Pipeline data. 1In the Pipeline Views section, click the New icon. 2 Select Create a new, empty Pipeline …

Encompass coding detail – 3

There are few lines of Plugin and their explanation. { public const int GWL_WNDPROC = -4; public const uint WM_DESTROY = 2; public const uint WM_KEYDOWN = 256; public const uint WM_KEYUP = 257; public const int VK_ESCAPE = 27; public const int VK_F5 = 116; public const int WM_COMMAND = 273; [DllImport(“user32.dll”, SetLastError = …

Encompass coding detail – 2

There are few lines of plugin and its explanation. { Loan currentLoan = EncompassApplication.CurrentLoan; if (e.MilestoneEvent.MilestoneName.ToLower() != “funded”) return; string field1 = Macro.GetField(“1172”); string field2 = Macro.GetField(“19”); string field3 = Macro.GetField(“1543”); string field4 = Macro.GetField(“VEND.X263”); string field5 = Macro.GetField(“364”); string field6 = Macro.GetField(“2553”); DateTime result1; DateTime? disbursementDateObj = string.IsNullOrEmpty(field6) || !(field6 != “//”) || !DateTime.TryParseExact(field6, …

Encompass coding details – 1

There are few lines of plugin and its explanation. [DllImport(“User32.dll”)] public static extern int SendMessage(IntPtr hWnd, int uMsg, int wParam, string lParam); [DllImport(“User32.dll”)] public static extern int SendMessage(IntPtr hWnd, int uMsg, int wParam, int lParam); [DllImport(“user32.dll”)] public static extern IntPtr GetActiveWindow(); [DllImport(“user32.dll”)] public static extern IntPtr GetForegroundWindow(); [DllImport(“user32.dll”)] public static extern bool SetActiveWindow(IntPtr hWnd); [DllImport(“user32.dll”)] …

Encompass Notes 2

Every Encompass system defines the roles which users will take on within a loan as it moves from milestone to milestone. Typical examples include the Loan Officer, Loan Processor and Underwriter roles. Roles can be used to determine the set of business rules which govern the user’s access to specific loan features or areas. Users …