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 …

Encompass SDK – Notes 1

Encompass controls access to individual loans using both implicitly and explicitly assigned access rights. Implicit access rights are those determined based on the user’s assignment as a loan team member, a user’s persona, or a user’s place within the organization hierarchy. These rights are automatically granted and cannot be revoked. For example, an administrator at …

Encompass – DDM some details

1. Dynamic Data Management (DDM) – Overview and Benefits Dynamic Data Management (DDM) is a scenarios-based rules engine that ensures that the value of any fee or field is automatically populated for various loan scenarios, defined by the administrator. With DDM, you can control the order of operations and ensure that the relevant field value …

Document Popup – Encompass plugin

The provided code is a C# class named “DocumentPopUp,”. This class seems to be a plugin designed to interact with EllieMae’s Encompass loan origination software. Let’s break down the code: 1. **Using Statements**: This section includes several “using” directives to include external namespaces and classes that the plugin depends on. These namespaces include EllieMae.Encompass.Automation, EllieMae.Encompass.BusinessObjects, …