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 …