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 = …
Year: 2023
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 …
Encompass – How to generate only a Planned Unit Development Rider (PUD) Rider, only a Condo Rider, or Both Riders?
How to generate only a Planned Unit Development Rider (PUD) Rider, only a Condo Rider, or Both Riders? Summary: To Generate Both a PUD Rider and a Condominium Rider: Step 1: Click on Forms tab and Select Transmittal Summary Step 2: On Property Information Screen Then Click Property Type (Field 1041) as a PUD Step …
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, …
One plugin and some codes explanation – Encompass
Here are some codes of an Encompass plugin. There are some great seniors and friends who helped you at any stage. Thanks Michael, Zachary, Larry, Nikolai and few more. This class appears to be implementing functionality related to milestones in a software application, potentially a mortgage or loan processing application, given the references to “Encompass” …
Not accessible Columns – Encompass pipeline view
Not Accessible Columns Select the columns that the persona cannot add to the Pipeline. 1 To make a column inaccessible to the persona, click the New icon. 2 On the Select Field window, select a field from the list, and click OK. • To search for a field, type one or more characters in the …