The following code creates a new custom event on every Borrower Contact to indicate that a marketing email was sent to them. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.Query; using EllieMae.Encompass.BusinessObjects.Contacts; class ContactManager { public static void Main(string[] args) { // Open the session to the remote server Session session = new …
Author: admin
Encompass – code creates a new appointment to meet with a contact
The following code creates a new appointment to meet with a contact. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Calendar; using EllieMae.Encompass.BusinessObjects.Contacts; using EllieMae.Encompass.Query; class ContactManager { public static void Main(string[] args) { // Open the session to the remote server Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); // Create a new …
Encompass – Viewing TPO Loans
Viewing TPO Loans After a loan is submitted via a TPO Connect website, authorized users can open their Pipeline and view the loan. The Company filter with Internal Organization and TPO options enable users to view only the loans originated in Encompass or only the loans submitted by the TPO contacts. Use the TPO filter …
Encompass – Format an email template
To Format a Template Use the toolbar above the email message text box to format the content. 1Select text and use the drop-down lists to adjust the font type and size. 2Click the formatting icons to make the text bold, italic or underlined, or to change the font color. 3To insert an image, click the …
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 = …