<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://dpp.sagecrm.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>SageCRM - The Next Level</title><link>http://dpp.sagecrm.com/blogs/the_next_level/default.aspx</link><description>&lt;img src="/blogs/the_next_level/roblawson90x90.jpg" hspace="12" align="left" alt="" /&gt;This BLOG is meant for posts that are too technical for the Accpac Community BLOG.  I regularly post to &lt;a href="http://community.sageaccpac.com/blogs/crm_tips/default.aspx"&gt;a SageCRM Blog on the Accpac Community&lt;/a&gt;.  The Mission Statement for the Sage Accpac BLOG defines that I will be posting articles of difficulty from 1 to 5.  This BLOG on the DPP.SageCRM site will be for articles that are ABOVE a level of 5 in difficulty.  Which means specific Technical Topics that need a longer explanation and some sort of coding beyond field level scripts.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>SageCRM - LinkedIn Example - Person</title><link>http://dpp.sagecrm.com/blogs/the_next_level/archive/2009/06/17/sagecrm-linkedin-example-person.aspx</link><pubDate>Wed, 17 Jun 2009 12:17:00 GMT</pubDate><guid isPermaLink="false">94c6599b-6b03-4097-ac1a-0c4ca7ff1508:2511</guid><dc:creator>Lawson</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://dpp.sagecrm.com/blogs/the_next_level/rsscomments.aspx?PostID=2511</wfw:commentRss><comments>http://dpp.sagecrm.com/blogs/the_next_level/archive/2009/06/17/sagecrm-linkedin-example-person.aspx#comments</comments><description>&lt;p&gt;&lt;strong&gt;Summary:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The purpose of this BLOG posting is to provide instruction on how to add in a link to LinkedIn for persons&amp;nbsp;onto the Person Summary Screen.&amp;nbsp; A zipped pdf file has been created for users to take these instructions with them, &lt;a class="" title="SageCRM - LinkedIn Example - Person - PDF File" href="http://dpp.sagecrm.com/blogs/the_next_level/LinkedInExamplePersonv01.zip"&gt;click here&lt;/a&gt; to download the pdf. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Assumptions:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;During this discussion I will be presenting how to link the Person Entry Screen to LinkedIn.&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;Please note this code assumes that the user is always on-line, i.e. connected to the internet, errors will result if an attempt is made to use the following documented behavior without an internet connection.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Additionally, this code assumes that the user has a current LinkedIn account and has configured their LinkedIn login to be remembered so that the user merely has to navigate to the site to have access to their LinkedIn profile.&amp;nbsp; If the user chooses to log-in to the LinkedIn site each time they visit LinkedIn then this sample code will require this login to occur every time.&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Prerequisites:&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;SageCRM 6.2, this code has been written in a way that will allow it to function within SageCRM on-premise and/or SageCRM.com.&amp;nbsp; There are other ways of achieving the same result which require the use of Server Side code, in an effort to make this code work for all of our existing clients I modified the code shared with me to work client side only.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Installation Instructions:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;1.&amp;nbsp;In order to use this customization you must navigate to Administration | Customization | Person Entity | Screens Tab | select the Person Summary Screen.&lt;br /&gt;2.&amp;nbsp;Once you are in the properties for the screen copy the below code and paste it into the Custom Content for Person Entry Screen:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Beginning of Code&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; window.onload = function(){&lt;br /&gt;&amp;nbsp;&amp;nbsp; var persfirstname = document.getElementById(&amp;#39;_Datapers_firstname&amp;#39;).innerText;&lt;br /&gt;&amp;nbsp;&amp;nbsp; var perslastname = document.getElementById(&amp;#39;_Datapers_lastname&amp;#39;).innerText;&lt;br /&gt;&amp;nbsp;&amp;nbsp; var compname = document.getElementById(&amp;#39;_Datacomp_name&amp;#39;).innerText;&lt;br /&gt;&amp;nbsp;&amp;nbsp; var captpersfirstname = document.getElementById(&amp;#39;_Captpers_firstname&amp;#39;).innerText;&lt;br /&gt;&amp;nbsp;&amp;nbsp; var xlink = &amp;quot;http://www.linkedin.com/search?search=&amp;amp;lname=&amp;quot;+perslastname+&amp;quot;&amp;amp;fname=&amp;quot;+persfirstname+&amp;quot;&amp;amp;company=&amp;quot;+ compname;&lt;br /&gt;&amp;nbsp;&amp;nbsp; var xURL =&amp;nbsp; &amp;quot;&amp;lt;a href=&amp;quot; + xlink + &amp;quot; target=_blank&amp;gt;&amp;lt;img src=http://www.linkedin.com/img/icon/icon_company_insider_in_12x12.gif border=0 title=&amp;#39;Find in LinkedIN&amp;#39;&amp;gt;&amp;lt;/a&amp;gt;&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp; &amp;nbsp;document.getElementById(&amp;#39;_Captpers_firstname&amp;#39;).innerHTML += xURL;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;End of Code&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;3.&amp;nbsp;Once the code is copied into the screen, click the save button to save the screen modifications.&lt;br /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Testing Instructions:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1.&amp;nbsp;To test this customization navigate to the Main Menu and find or select a Person record.&lt;br /&gt;2.&amp;nbsp;Once a person record is selected a LinkedIn icon should appear next to the label for the person first name.&lt;br /&gt;3.&amp;nbsp;Click on the LinkedIn icon, a separate screen should appear launching and navigating the user to the Person Search screen found within LinkedIn’s site.&lt;/p&gt;
&lt;p&gt;A special thanks to the following two chaps for contributing to the final solution.&amp;nbsp; Without their assistance this would not have been possible.&lt;/p&gt;
&lt;p&gt;Alistair Hill&lt;br /&gt;Consultant&lt;br /&gt;Plus Computer Solutions Ltd.&lt;br /&gt;Phone: 604.420.1099&lt;br /&gt;e-mail: &lt;a href="mailto:alistair@plus.ca"&gt;alistair@plus.ca&lt;/a&gt; &lt;br /&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;Ken Schmitt&lt;br /&gt;Advanced CRM Certified Consultant&lt;br /&gt;London ON, Canada&lt;br /&gt;e-mail: &lt;a href="mailto:ken@schmitts.ca"&gt;ken@schmitts.ca&lt;/a&gt; &lt;br /&gt;website: &lt;a href="http://s5.schmitts.ca/"&gt;http://s5.schmitts.ca&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://dpp.sagecrm.com/aggbug.aspx?PostID=2511" width="1" height="1"&gt;</description><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/SageCRM/default.aspx">SageCRM</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/LinkedIn/default.aspx">LinkedIn</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/Person+Entity/default.aspx">Person Entity</category></item><item><title>When using a derived field in a SageCRM SQL View how do you get SageCRM to see this field as a numeric so you can sum it within reports?</title><link>http://dpp.sagecrm.com/blogs/the_next_level/archive/2009/04/16/when-using-a-derived-field-in-a-sagecrm-sql-view-how-do-you-get-sagecrm-to-see-this-field-as-a-numeric-so-you-can-sum-it-within-reports.aspx</link><pubDate>Thu, 16 Apr 2009 14:21:00 GMT</pubDate><guid isPermaLink="false">94c6599b-6b03-4097-ac1a-0c4ca7ff1508:2143</guid><dc:creator>Lawson</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://dpp.sagecrm.com/blogs/the_next_level/rsscomments.aspx?PostID=2143</wfw:commentRss><comments>http://dpp.sagecrm.com/blogs/the_next_level/archive/2009/04/16/when-using-a-derived-field-in-a-sagecrm-sql-view-how-do-you-get-sagecrm-to-see-this-field-as-a-numeric-so-you-can-sum-it-within-reports.aspx#comments</comments><description>&lt;p&gt;This was a recent question I got from a business partner.&amp;nbsp; When you create a derived field in a SageCRM SQL View how do you get SageCRM to see this field as a numeric so you can sum the field within SageCRM reports?&amp;nbsp; This is a great question.&amp;nbsp; But there are some parts of this question that need explaining before we get to the answer of the question.&lt;/p&gt;
&lt;p&gt;The first is what is a “derived field in a SageCRM SQL View”.&amp;nbsp; Will when I teach SageCRM and creating of Views I always show how any SageCRM consultant can start writing views by using the Microsoft SQL Enterprise Manager and the Microsoft SQL Query tool to create the view and then copy the view into SageCRM.&amp;nbsp; That is another conversation and another posting I&amp;nbsp;wrote on the Accpac Community BLOG &lt;a href="http://community.sageaccpac.com/blogs/crm_tips/archive/2009/03/09/how-to-write-a-sagecrm-sql-view-for-non-programmers.aspx"&gt;http://community.sageaccpac.com/blogs/crm_tips/archive/2009/03/09/how-to-write-a-sagecrm-sql-view-for-non-programmers.aspx&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;During the process of creating a view most partners want to just add fields.&amp;nbsp; But some times a situation comes up where you need to add two values together or do some sort of formula within the individual rows of a report.&amp;nbsp; The concept of this calculated value is available through Microsoft SQL derived fields.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Ok, so we get the basic idea of a derived field.&amp;nbsp; An example of a derived field can be as simple as when you want to know the unique id for the company or the opportunity within SageCRM.&amp;nbsp; Out of the box these unique ids are hidden from view and ONLY SageCRM has access to them.&amp;nbsp; Within a SQL statement you can simply create your own field or a derived field for these so that SageCRM will NOT hide them from view.&amp;nbsp; To do this in a SQL statement you could do something as simple as:&lt;/p&gt;
&lt;p&gt;Select *, comp_companyid as comp_uniqueid&lt;br /&gt;From company&lt;/p&gt;
&lt;p&gt;This example changes the field name of comp_companyid to comp_uniqueid.&amp;nbsp; NOW this field will not be hidden by SageCRM and now can be placed on the screen.&amp;nbsp; Of course you do not want users or anyone to be able to alter this field.&amp;nbsp; In order to do this you will need to do the answer to the over riding question for this post.&lt;/p&gt;
&lt;p&gt;Once the view is added to SageCRM and the check box to allow it for reporting has been checked you now want to set the properties of this derived field so that you can sum it within a report.&lt;/p&gt;
&lt;p&gt;So the answer to the&amp;nbsp;questions above is quite simple.&amp;nbsp; Add to SageCRM the derived field “comp_uniqueid” as a company table field.&amp;nbsp; Now you are thinking I don’t want to add this to a screen and you would be correct.&amp;nbsp; You do not want to add this field to a screen.&amp;nbsp; But think of all the benefits you get by adding this field to the database.&amp;nbsp; You now can have access to field level security.&amp;nbsp; If the field is a numeric it can NOW be summed within a SageCRM Report and you also have access to the other properties of a numeric field as well.&amp;nbsp; Such as the field name.&amp;nbsp; Instead of seeing in the report writer comp:comp_uniqueid you will now see what ever translation you provided for the field such as “Company Unique ID”.&lt;/p&gt;
&lt;p&gt;Some notes about creating derived fields.&amp;nbsp; You can do almost anything you want with a derived field.&amp;nbsp; Such as creating a derived table that populates the derived field for the desired record.&amp;nbsp; (Ok, this topic is another completely separate post I will have to write).&amp;nbsp;&amp;nbsp;But when you get to the naming of a derived field you should always follow the naming conventions set forth by SageCRM.&amp;nbsp; Why do you want to do this?&amp;nbsp; Will if you look at the SageCRM Report writer you will notice that the fields are listed first by table name such as company:, person:, opportunity: and then by the field name “comp_uniqueid”.&amp;nbsp; How does SageCRM do this?&amp;nbsp; Will this is achieved by the naming conventions that are required when a field is created on a table.&amp;nbsp; Each table has a unique prefix.&amp;nbsp; For example every field within the company table starts with comp_, the opportunity table is oppo_ the person table is pers_.&amp;nbsp; So when you create this derived field if you stick with the SageCRM prefix logic you will see many benefits within SageCRM.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://dpp.sagecrm.com/aggbug.aspx?PostID=2143" width="1" height="1"&gt;</description><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/SageCRM/default.aspx">SageCRM</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/Reports/default.aspx">Reports</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/Views/default.aspx">Views</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/SQL+Views/default.aspx">SQL Views</category></item><item><title>How to Embed a url into a SageCRM On-Screen Notification</title><link>http://dpp.sagecrm.com/blogs/the_next_level/archive/2009/02/26/how-to-embed-a-url-into-a-sagecrm-on-screen-notification.aspx</link><pubDate>Thu, 26 Feb 2009 19:19:00 GMT</pubDate><guid isPermaLink="false">94c6599b-6b03-4097-ac1a-0c4ca7ff1508:1921</guid><dc:creator>Lawson</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://dpp.sagecrm.com/blogs/the_next_level/rsscomments.aspx?PostID=1921</wfw:commentRss><comments>http://dpp.sagecrm.com/blogs/the_next_level/archive/2009/02/26/how-to-embed-a-url-into-a-sagecrm-on-screen-notification.aspx#comments</comments><description>&lt;p&gt;&lt;strong&gt;Summary:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The purpose of this whitepaper is to provide instruction on how to embed a dynamic URL into a SageCRM On-Screen Notification.&amp;nbsp; The dynamic URL is actually a merge field being pulled into the notification.&amp;nbsp; In the following print screen you will notice there are a set of notifications related to a Web coming into SageCRM’s Web to Lead functionality.&amp;nbsp; A notification has been created on the Lead table to notify the SageCRM user that a Lead has come in from the website AND that they can “Click HERE to GO to Clients WEBSITE”.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img height="247" alt="" src="http://dpp.sagecrm.com/blogs/the_next_level/EmbeddedLeadCompanyWebsiteURLResult.png" width="600" border="0" /&gt; 
&lt;p&gt;So, the notifications serve a dual role, if the non-hyperlink portion of the message is clicked the SageCRM User is taken to the actual Lead record within SageCRM.&amp;nbsp; The following print screen shows that if the SageCRM user mouses over the “You have a lead from the website” portion of the Notification the information portion of the Internet Explorer browser shows a link taking the SageCRM user to the actual lead record related to this specific notification.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;If the “Click HERE to GO to Clients WEBSITE” portion of the Notification is clicked the user will&amp;nbsp;be taken to the Lead’s website.&amp;nbsp; The following print screen shows that when you mouse over the “Click HERE to GO to Clients WEBSITE” the information portion of the Internet Explorer browser shows where the SageCRM user will be taken to.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;When you click on the normal text of the notification you will be taken to the associated record.&amp;nbsp; As shown in the following print screen I clicked on the highlighted portion of the following screen shot which took me from My CRM | Calendar tab to the Lead record associated to that specific notification.&lt;/p&gt;
&lt;p&gt;A&amp;nbsp;pdf file has been created for users to take these&amp;nbsp; instructions with them, &lt;a class="" href="http://dpp.sagecrm.com/blogs/the_next_level/HowToEmbedaURLintoaSageCRMOnScreenNotificationv2.zip" target="_blank"&gt;click here to download the pdf&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Assumptions:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This only requires the use of SageCRM and it’s out of the box notification functionality.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Prerequisites:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;SageCRM 6.2 (This has worked on earlier versions of SageCRM all the way back to SageCRM 6.0) &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Installation Instructions Overview:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;There are a couple of parts to this process.&amp;nbsp; Here is an overview of the parts required.&lt;/p&gt;
&lt;p&gt;Part 1: Identify which URL field will be used (Either a New field or an Existing field)&amp;nbsp;&lt;br /&gt;Part 2: Build On Screen Notification&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;u&gt;Part 1: Identify which URL field will be used (Either a New field or an Existing field)&lt;/u&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The first part of this process requires identification of which URL field will be used and from which entity.&amp;nbsp; This field can be any existing field that is defined as a URL field type within SageCRM.&amp;nbsp; In addition, it can be a new custom field added to an Entity.&amp;nbsp; An example of where this has been applied.&amp;nbsp; We had a client who needed to keep track of a specific contract document that was stored off site at their outsourced Document Management site.&amp;nbsp; When a document was added to the off site location a URL would be sent to the user that uploaded the document.&amp;nbsp; It was the responsibility of the user to copy the provided URL and go to the associated opportunity and use the provided workflow button and provide the contract URL for the specific opportunity.&amp;nbsp; This was achieved by adding a URL field to first the Opportunity and then the Opportunity Progress tables of SageCRM.&amp;nbsp; And then add a step to the clients custom workflow process to provide the URL for the associated contract.&amp;nbsp; Once the contract URL was provided additional workflow buttons appeared which allowed for the CRM user to progress the Opportunity to the stage of approval process.&amp;nbsp; During the approval process this custom URL field was used for notifications and for tasks so that CRM. &lt;/p&gt;
&lt;p&gt;For the following example I will use the Lead Entity and the associated Lead Company Website field (lead_companywebsite). &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;u&gt;Part 2: Build On Screen Notification&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1.&amp;nbsp;Navigate to Administration | Customization | Lead entity | Notifications Tab.&lt;br /&gt;2.&amp;nbsp;Click the New On-Screen Notification button.&lt;br /&gt;3.&amp;nbsp;Enter the following information into the new on-screen notification:&lt;/p&gt;
&lt;table class="MsoTableGrid" style="BORDER-RIGHT:medium none;BORDER-TOP:medium none;MARGIN:auto auto auto 5.4pt;BORDER-LEFT:medium none;BORDER-BOTTOM:medium none;BORDER-COLLAPSE:collapse;mso-border-alt:solid windowtext .5pt;mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:.5pt solid windowtext;mso-border-insidev:.5pt solid windowtext;" cellspacing="0" cellpadding="0" class="MsoTableGrid"&gt;

&lt;tr style="mso-yfti-irow:0;mso-yfti-firstrow:yes;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:windowtext 1pt solid;PADDING-LEFT:5.4pt;BACKGROUND:#cccccc;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;mso-border-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Field name:&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:windowtext 1pt solid;PADDING-LEFT:5.4pt;BACKGROUND:#cccccc;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Field Value:&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:windowtext 1pt solid;PADDING-LEFT:5.4pt;BACKGROUND:#cccccc;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Explanation if needed&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:1;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Notification Name&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Lead from Web&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:2;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Enabled&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;“Check the box”&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:3;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;And/Or All:&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;And&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:4;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Line 1. Field&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Lead – Source&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:5;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Line 1. Condition&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Equal to&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:6;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Line 1. Value&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Web&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Want all Leads that come in from the Web via the Web to Lead feature to cause a notification to be sent to a specific SageCRM user.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:7;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Line 2. Field&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Lead – Date Created&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:8;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Line 2. Condition&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Greater than&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:9;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Line 2. Value&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Select a date, I chose the end of the previous year when this example was built which is 12/31/2008.&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Want only leads from a certain date going forward to notify the specific user.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Think about this option in the following way, if a SageCRM customer has been using SageCRM and Web to Lead for more than a few months then all of the Leads created since the first time they started using SageCRM will cause this notification to alert the specific SageCRM user.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Which more than likely will not be appreciated.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;So, in this example by choosing a certain date we are limiting the notifications to the current years web to leads.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:10;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Notify User&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Select a specific user&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;For my example to always show under a specific SageCRM user I hard coded my Notify User to be my SageCRM User “AR Clerk”.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;A dynamic parameter such as “- - lead – assigned to user- -“ can&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;be specified here instead of the hard coded value used in the example.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style="mso-yfti-irow:11;mso-yfti-lastrow:yes;"&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:windowtext 1pt solid;WIDTH:95.75pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;Notification Message&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:219.15pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;You have a lead from the website, &amp;lt;A HREF=&amp;quot;http://#lead_companywebsite#?&amp;quot;&amp;gt;Click HERE to GO to Clients WEBSITE&amp;lt;/A&amp;gt;&lt;/span&gt;&lt;/td&gt;
&lt;td class="" style="BORDER-RIGHT:windowtext 1pt solid;PADDING-RIGHT:5.4pt;BORDER-TOP:#e0dfe3;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#e0dfe3;WIDTH:243.1pt;PADDING-TOP:0in;BORDER-BOTTOM:windowtext 1pt solid;BACKGROUND-COLOR:transparent;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;&lt;span style="FONT-SIZE:10pt;FONT-FAMILY:Arial;"&gt;The HTML tag will bet changed within the notification to a URL.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;The merge field will be pulled dynamically each time a notification is shown on the screen.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Resulting in a notification with unique urls for each lead.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;p&gt;The following screen shot shows what the on-screen notification configuration looks like.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://dpp.sagecrm.com/blogs/the_next_level/WebToLeadLeadFromWebOnScreenNotificationWithEmbeddedLeadCompanyURL.png"&gt;&lt;/a&gt;&lt;img height="383" alt="" src="http://dpp.sagecrm.com/blogs/the_next_level/WebToLeadLeadFromWebOnScreenNotificationWithEmbeddedLeadCompanyURL.png" width="600" border="0" /&gt;&lt;br /&gt;&lt;img height="1" alt="" src="http://dpp.sagecrm.com/blogs/blogs/the_next_level/WebToLeadLeadFromWebOnScreenNotificationWithEmbeddedLeadCompanyURL.png" width="1" align="absMiddle" border="0" /&gt;&lt;/p&gt;
&lt;p&gt;a.&amp;nbsp;At this point once all the values are completed click the Save button.&lt;br /&gt;&lt;br /&gt;b.&amp;nbsp;In order to test this Lead records need to be added to SageCRM with a source of “Web” and a created date greater than the date specified in your notification.&amp;nbsp; Once all the conditions are met the notification will run based on your pre-defined interval in Workflow and Escalation Configuration area, the SageCRM instance used here is using the system&amp;nbsp;default of 5 minutes. &lt;br /&gt;&lt;br /&gt;c.&amp;nbsp;The following print screen shows Notifications has been created on the Lead table to notify the SageCRM user that a Lead has come in from the website AND that they can “Click HERE to GO to Clients WEBSITE”.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Recap:&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So, the notifications serve a dual role, if the non-hyperlink portion of the message is clicked the SageCRM User is taken to the actual Lead record within SageCRM.&amp;nbsp; If the SageCRM user mouses over the “You have a lead from the website,” portion of the Notification the information portion of the Internet Explorer browser shows a link taking the SageCRM user to the lead record’s website.&lt;/p&gt;&lt;img src="http://dpp.sagecrm.com/aggbug.aspx?PostID=1921" width="1" height="1"&gt;</description><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/on-screen/default.aspx">on-screen</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/notification/default.aspx">notification</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/SageCRM/default.aspx">SageCRM</category><category domain="http://dpp.sagecrm.com/blogs/the_next_level/archive/tags/escaltion+rules/default.aspx">escaltion rules</category></item></channel></rss>