<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://customerfx.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>Customer FX</title><link>http://customerfx.com/pages/</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP2 (Build: 20611.960)</generator><item><title>Workshop Reminder: Merging Records - SalesLogix v6.2 and Above</title><link>http://customerfx.com/pages/inbox/2008/07/20/workshop-reminder-merging-records-saleslogix-v6-2-and-above.aspx</link><pubDate>Mon, 21 Jul 2008 05:02:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39496</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>If you would like to attend the workshop, &amp;quot;Merging Records - SalesLogix v6.2 and Above&amp;quot;, but haven&amp;#39;t registered, now is the time!  The ability to merge records is a great skill to have and we wouldn&amp;#39;t want you to miss out.  Join this meeting now....(&lt;a href="http://customerfx.com/pages/inbox/2008/07/20/workshop-reminder-merging-records-saleslogix-v6-2-and-above.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39496" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/inbox/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/inbox/archive/tags/Workshop/default.aspx">Workshop</category></item><item><title>Visual Analyzer Set Up (Part 5) The Leads KPI</title><link>http://customerfx.com/pages/reporting/2008/07/18/visual-analyzer-set-up-part-5-the-leads-kpi-s.aspx</link><pubDate>Fri, 18 Jul 2008 16:22:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39503</guid><dc:creator>George Jensen</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Because we have run through the process a couple of times these&amp;nbsp;posts on&amp;nbsp;setting up the KPI spreadsheets start getting&amp;nbsp;a little less repetitive and little more to the point.&lt;/p&gt;
&lt;p&gt;I entered into my eval system as Lee Hogan and entered one Lead through the Insert Lead menu item. I refreshed the Visual Analyzer (VA) file and the Lead Dial now showed that Lee had 1 Lead in the database.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://customerfx.com/blogs/reporting/Blog7002.jpg" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;Seems simple enough,&amp;nbsp;my&amp;nbsp;next thought was what happens when I convert the Lead to a Contact in the database.&amp;nbsp;I experimented around with my newly entered lead and used the&amp;nbsp;Convert Qualified Lead&amp;nbsp;wizard.&amp;nbsp; After the wizard operation was complete, I refreshed VA and&amp;nbsp;noticed the Lead dial for Lee went back down to 0. I checked into the Leads table a little and discovered that my contact indeed did not exist and was completely transformed over to the Contact table.&lt;/p&gt;
&lt;p&gt;Next, I did a search and found the newly entered Contact. The Contact record had a History record written&amp;nbsp;in the database with a description of &amp;quot;Lead Conversion Notes&amp;quot;.&amp;nbsp; This provided the information I needed to draw the number of Leads a User enters into the system&amp;nbsp;and also allows me to pull out the number of Leads that were also converted into Contacts.&lt;/p&gt;
&lt;p&gt;For the client I am working with, I wrote the following SQL Script to help determine how many Leads had been converted to Contacts in the system.&lt;/p&gt;
&lt;p style="MARGIN-LEFT:40px;"&gt;SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNT(sysdba.CONTACT.CONTACTID) AS ConvertedLeads, sysdba.USERINFO.USERNAME, YEAR(sysdba.CONTACT.CREATEDATE) as Year&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;FROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sysdba.CONTACT INNER JOIN&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sysdba.HISTORY ON sysdba.CONTACT.CONTACTID = sysdba.HISTORY.CONTACTID INNER JOIN&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sysdba.USERINFO ON sysdba.HISTORY.USERID = sysdba.USERINFO.USERID&lt;br /&gt;WHERE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (sysdba.HISTORY.DESCRIPTION LIKE &amp;#39;%Lead Conversion Notes%&amp;#39;)&lt;br /&gt;GROUP BY sysdba.USERINFO.USERNAME, sysdba.CONTACT.CREATEDATE&lt;/p&gt;
&lt;p&gt;I then wrote this SQL Script to determine the number of Leads that the users had in the system by year.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="MARGIN-LEFT:40px;"&gt;SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sysdba.USERINFO.USERNAME, COUNT(sysdba.LEAD.LEADID) AS UnConvertedLeads, YEAR(sysdba.LEAD.CREATEDATE) AS [Year]&lt;br /&gt;FROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sysdba.LEAD INNER JOIN&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sysdba.USERINFO ON sysdba.LEAD.CREATEUSER = sysdba.USERINFO.USERID&lt;br /&gt;GROUP BY sysdba.USERINFO.USERNAME, YEAR(sysdba.LEAD.CREATEDATE)&lt;/p&gt;
&lt;p&gt;For each user, we looked at the number of Leads leads and the number of Leads&amp;nbsp;converted to Contact for the last three years.&amp;nbsp;&amp;nbsp;The clients top user had 905 Leads in the system for 2007,&amp;nbsp;127 were&amp;nbsp;converted&amp;nbsp;into&amp;nbsp;Contacts.&amp;nbsp; This calculated out to 14% of the user entered as Leads had been converted to actual Contacts.&amp;nbsp;&amp;nbsp;Using&amp;nbsp;this information&amp;nbsp;the client set the goal for each user at&amp;nbsp;600 leads for 2008/2009&amp;nbsp;with the hope that there would be a 10% conversion of leads to Contacts with a further hope that&amp;nbsp;more then 50% of those Contacts will become customers.&amp;nbsp;&amp;nbsp;This means 50 new Leads a month with 5 actually becoming Contacts and 2-3 becoming Customers while maintaining the Users current base.&lt;/p&gt;
&lt;p&gt;We updated the Leads Spread Sheet as stated in previous posts.&amp;nbsp; Just remember the spreadsheet name within the Microsoft Excel file is KPI (4). Also, remember the&amp;nbsp;evaluation users (like Lee Hogan)&amp;nbsp;will continue to display until all of the KPI Spread Sheets are updated with your User base.&lt;/p&gt;
&lt;p&gt;Tickets KPI is up next.&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39503" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/reporting/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/reporting/archive/tags/Visual+Analyzer/default.aspx">Visual Analyzer</category></item><item><title>Visual Analyzer Set Up (Part 4) The Activity KPI</title><link>http://customerfx.com/pages/reporting/2008/07/16/visual-analyzer-set-up-part-4-the-activity-kpi-s.aspx</link><pubDate>Wed, 16 Jul 2008 16:15:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39492</guid><dc:creator>George Jensen</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I am continuing on with&amp;nbsp;the set up of Sage SalesLogix (SLX)&amp;nbsp;Visual Analyzer (VA),&amp;nbsp;currently our focus is with&amp;nbsp;the Microsoft Excel Spread Sheets that support Key Performance Indicators (KPI).&amp;nbsp;&amp;nbsp;Today we will concentrate on the Activity&amp;nbsp;KPI&lt;/p&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/blogs/reporting/Blog7001.jpg"&gt;&lt;img src="http://customerfx.com/blogs/reporting/Blog7001.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;To detiermine what adds up into the Actual field in the dial I went into the SLX Eval database and entered in the different types of activities for Lee Hogan.&amp;nbsp; I discovered that the Meeting, Phone Call, To - Do, Literature Request,&amp;nbsp;along with the&amp;nbsp;Activity Note Pad all add to the Actual total seen in the dail above.&amp;nbsp; The Event and Personal Activites did count against the Goal. &lt;/p&gt;
&lt;p&gt;As you probably already have guessed the Goal of 24 was entered into the KPI Spread Sheets for Lee.&amp;nbsp; Since this is July (the 7 month of the year), VA&amp;nbsp;calculated that Lee&amp;#39;s goal year to date is 14 Activities.&amp;nbsp;&amp;nbsp;Please note, that I met his Goal in 15 minutes of playing around with the system.&amp;nbsp; So how do you set&amp;nbsp;quality meaninful&amp;nbsp;Activity&amp;nbsp;goals for your users?&amp;nbsp;&amp;nbsp;For the my VA clients database we used the following SQL Script to help decide what their users goals should be. &lt;/p&gt;
&lt;p&gt;SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNT(SYSDBA.HISTORY.HISTORYID) AS COUNT, SYSDBA.USERINFO.USERNAME, YEAR(SYSDBA.HISTORY.COMPLETEDDATE) AS [Year]&lt;/p&gt;
&lt;p&gt;FROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SYSDBA.HISTORY INNER JOIN SYSDBA.PICKLIST &lt;br /&gt;ON SYSDBA.HISTORY.TYPE = SYSDBA.PICKLIST.ID &lt;br /&gt;INNER JOIN SYSDBA.USERINFO &lt;br /&gt;ON SYSDBA.HISTORY.COMPLETEDUSER = SYSDBA.USERINFO.USERID&lt;/p&gt;
&lt;p&gt;WHERE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;(SYSDBA.PICKLIST.TEXT IN (&amp;#39;MEETING&amp;#39;, &amp;#39;PHONE CALL&amp;#39;, &amp;#39;To-Do&amp;#39;, &amp;#39;Literature Request&amp;#39;)) &lt;br /&gt;and YEAR(SYSDBA.HISTORY.COMPLETEDDATE)=&amp;#39;2008&amp;#39; &lt;/p&gt;
&lt;p&gt;&lt;br /&gt;GROUP BY SYSDBA.USERINFO.USERNAME, YEAR(SYSDBA.HISTORY.COMPLETEDDATE)&lt;br /&gt;ORDER BY YEAR(SYSDBA.HISTORY.COMPLETEDDATE), SYSDBA.USERINFO.USERNAME&lt;/p&gt;
&lt;p&gt;If you adjust the WHERE clause YEAR value you can really get a good idea of how your use&lt;font face="arial,helvetica,sans-serif"&gt;r&lt;/font&gt;s have previously&amp;nbsp;used the system and come up with some good solid performance based Activity goals for coming years. &lt;/p&gt;
&lt;p&gt;To update the KPI spread sheet with your Activity Goals&amp;nbsp;follow&amp;nbsp;these steps:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;Log into the SLX Database as Admin.&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;Navigate to the VA interface by the NAV Bar button.&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;Along the top center of the view you will see a tool bar box with a number of icons,&amp;nbsp; The second icon from the right has a drop down, select the &amp;quot;Manage Configuration&amp;quot; from the list.&amp;nbsp;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://customerfx.com/blogs/reporting/Blog3008.jpg"&gt;&lt;img alt="" src="http://customerfx.com/blogs/reporting/Blog3008.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;The&amp;nbsp;Manage Configuration&amp;nbsp;view will appear. Select the &amp;quot;Open in Excel&amp;quot; button and select the KPIs.xls file from the windows open view.&amp;nbsp;&amp;nbsp;The KPI spread sheet should open.&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;Navigate to the KPIGoals(3) sheet. &lt;/div&gt;
&lt;li&gt;
&lt;div&gt;The first thing I did was delete all of the data in the coulmns to the right of colum A.&amp;nbsp;&amp;nbsp;I entered the names of each of the users for each year I want to track based on the list established in Part 1 of this series of posts.&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;For each user and year,&amp;nbsp;I added the Goal and then deleted or added the value of &amp;quot;Activities&amp;quot; in column A as necessary.&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;Save and close the KPIs.xls file.&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;On the Manage Configurations view, select the &amp;quot;Load From Excel&amp;quot; button&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;Again the select the KPIs.xls file from the windows open view.&amp;nbsp; The data sheet should now be updated with your data.&lt;/div&gt;
&lt;li&gt;
&lt;div&gt;Now refresh to see the changes in VA. &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;One thing to note,&amp;nbsp;until all of the KPI sheets are updated you will still see eval data in the VA.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;I hope these posts are helpful and&amp;nbsp;feel free to provide your feed back or ideas for future posts.&amp;nbsp; Next, the Leads KPI.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39492" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/reporting/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/reporting/archive/tags/Visual+Analyzer/default.aspx">Visual Analyzer</category></item><item><title>SageCRM 6.2 Beta Preview</title><link>http://customerfx.com/pages/sagecrm/2008/07/15/sagecrm-6-2-beta-preview.aspx</link><pubDate>Tue, 15 Jul 2008 17:01:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39491</guid><dc:creator>David Tinjum</dc:creator><slash:comments>0</slash:comments><description>Beta for SageCRM 6.2 is rapidly approaching.  The initial schedule calls for it to run from July 30 through August 22.  As usual, Customer FX will be participating and keep you posted on the progress. Some highlights on the upcoming release:

...(&lt;a href="http://customerfx.com/pages/sagecrm/2008/07/15/sagecrm-6-2-beta-preview.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39491" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/sagecrm/archive/tags/SageCRM/default.aspx">SageCRM</category><category domain="http://customerfx.com/pages/sagecrm/archive/tags/SageCRM+6.2/default.aspx">SageCRM 6.2</category></item><item><title>Power2Survey for SalesLogix Released</title><link>http://customerfx.com/pages/saleslogix/2008/07/15/power2survey-for-saleslogix-released.aspx</link><pubDate>Tue, 15 Jul 2008 13:21:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39489</guid><dc:creator>David Tinjum</dc:creator><slash:comments>0</slash:comments><description>With Power2Survey administrators can create custom surveys without having to customize SalesLogix St. Paul, MN ( PRWEB ) July 15, 2008 -- Customer FX Corporation announces the release of Power2Survey for Sage SalesLogix. Power2Survey enables code-less creation of custom surveys for use in leading CRM suite Sage SalesLogix . Key features and benefits include: Account representatives can have a scripted set of questions Can be used to collect detailed and planned information about campaigns, account...(&lt;a href="http://customerfx.com/pages/saleslogix/2008/07/15/power2survey-for-saleslogix-released.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39489" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/Press+Release/default.aspx">Press Release</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/CFX+Product/default.aspx">CFX Product</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/Power2Survey/default.aspx">Power2Survey</category></item><item><title>SalesLogix 7.5 Beta Testing Has Begun!</title><link>http://customerfx.com/pages/crmdeveloper/2008/07/11/saleslogix-7-5-beta-testing-has-begun.aspx</link><pubDate>Fri, 11 Jul 2008 20:55:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39488</guid><dc:creator>Ryan Farley</dc:creator><slash:comments>4</slash:comments><description>&lt;p&gt;The beta tesing for SalesLogix 7.5 has begun! Completely exciting. This is &lt;b&gt;&lt;i&gt;THE&lt;/i&gt;&lt;/b&gt; release for SalesLogix web, and one that IMO puts SalesLogix in the front of all other web-based CRM applications.&amp;nbsp; If you&amp;#39;re using SalesLogix Web and not yet planning on moving to 7.5 it&amp;#39;s time to start planning that upgrade. &lt;/p&gt;
&lt;p&gt;There will be plenty of things coming to show all the new features of 7.5 (like the upcoming &lt;a href="http://customerfx.com/pages/events/2008/06/19/Jul-15_2C00_-2008-_2D00_-SalesLogix-v7.5-Sneak-Peek-Live-_2D00_-A-Customer-FX-Exclusive.aspx"&gt;Customer FX 7.5 Sneak Peek live workshop&lt;/a&gt;) , but I wanted to point out a few small and less talked about things that I&amp;#39;ve liked so far in this release.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New Look &amp;amp; Feel&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The new &amp;quot;polished&amp;quot; look of the web client is completely impressive. I stuggled with the look of the original 7.2 client, had a hard time liking how it looked. Not the case any more. This looks awesome. Here&amp;#39;s a few examples:&lt;/p&gt;
&lt;p&gt;The new menus:&lt;br /&gt;&lt;img src="http://customerfx.com/blogs/crmdeveloper/SalesLogix75/slx75-1.jpg" border="0" alt="" /&gt; &lt;/p&gt;
&lt;p&gt;The new group viewer:&lt;br /&gt;&lt;img src="http://customerfx.com/blogs/crmdeveloper/SalesLogix75/slx75-2.jpg" border="0" alt="" /&gt; &lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Collapsible navbar:&lt;br /&gt;&lt;img src="http://customerfx.com/blogs/crmdeveloper/SalesLogix75/slx75-3.jpg" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;Awesome looking dialogs, especially lookups - wow those were really needed and I just can&amp;#39;t get over how great they look!&lt;br /&gt; &lt;img src="http://customerfx.com/blogs/crmdeveloper/SalesLogix75/slx75-4.jpg" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Session Timeout Indicator&lt;/b&gt; &lt;/p&gt;
&lt;p&gt;In the bottom-right corner. And you get bumped out to the login screen as soon as it expires. Small change, yes, but a nice one to have. Also, you get a count down to when you are going to get automatically logged off too - &amp;quot;auto logoff in 1 minute&amp;quot;:&lt;br /&gt;&lt;a href="http://customerfx.com/blogs/crmdeveloper/SalesLogix75/slx75-5.jpg"&gt;&lt;img src="http://customerfx.com/blogs/crmdeveloper/SalesLogix75/slx75-5.jpg" border="0" alt="" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;b&gt;Performance&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;One completely great addition in 7.5 is that you no longer have such a long wait time when clicking between tabs. In previous versions, each time you clicked a tab you&amp;#39;d get the progress bar while it was retrieved and loaded. You still have the for the first time you click it, but then it stays loaded so you can go to other tabs and then back to it and it displays &lt;i&gt;&lt;b&gt;immediately&lt;/b&gt;&lt;/i&gt;.&amp;nbsp; The result is a huge and noticeable performance increase in just moving around the client. Cool!&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Deployment&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know if this was an intended &amp;quot;feature&amp;quot; or not, but I love it. The deployment status window is no longer modal to the Application Architect. You can deploy and then click around in the AA while the deployment is happening. No more frustrating waits just to look at some things while it is deploying.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Forms&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a new addition of non-entity related forms! There will be plenty more to come on this one.&lt;/p&gt;
&lt;p&gt;Anyway, off the top of my head, those are some of the smaller things that hit me as I moved around and played with the first SalesLogix 7.5 beta. Plenty more will follow.&lt;br /&gt;&lt;/p&gt;
&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39488" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/New+Finds/default.aspx">New Finds</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/SalesLogix+7.5/default.aspx">SalesLogix 7.5</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/Beta/default.aspx">Beta</category></item><item><title>Jul 28, 2008 - New User Orientation for SalesLogix</title><link>http://customerfx.com/pages/events/2008/07/08/Jul-28_2C00_-2008-_2D00_-New-User-Orientation-for-SalesLogix.aspx</link><pubDate>Tue, 08 Jul 2008 17:06:26 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39484</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;Attend the Workshop - New User Orientation for SalesLogix!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Event details:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Monday, July 28, 2008 
&lt;li&gt;From 2:00 PM Central to 2:30 PM Central&lt;br /&gt;&lt;i&gt;(7:00 PM GMT to 7:30 PM GMT)&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a class="CommonTextButtonForward" href="http://customerfx.com/pages/events/pages/new-user-orientation-for-saleslogix.aspx"&gt;See Workshop Details&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Register Today!&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39484" width="1" height="1"&gt;</description></item><item><title>Outlook2CRM for Sage SalesLogix Reaches Major Milestone</title><link>http://customerfx.com/pages/saleslogix/2008/07/07/outlook2crm-for-sage-saleslogix-reaches-major-milestone.aspx</link><pubDate>Mon, 07 Jul 2008 14:03:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39482</guid><dc:creator>David Tinjum</dc:creator><slash:comments>0</slash:comments><description>This is a major milestone in the lifecycle of this product. A special thanks to the 100+ SalesLogix Business Partners who helped us reach this level, says Brianna Tinjum, Channel Partner Manager for Customer FX. 

...(&lt;a href="http://customerfx.com/pages/saleslogix/2008/07/07/outlook2crm-for-sage-saleslogix-reaches-major-milestone.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39482" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/CFX+Product/default.aspx">CFX Product</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/Outlook2CRM/default.aspx">Outlook2CRM</category></item><item><title>Fiscal Year SalesLogix Promotions from Sage</title><link>http://customerfx.com/pages/saleslogix/2008/07/01/fiscal-year-saleslogix-promotions-from-sage.aspx</link><pubDate>Tue, 01 Jul 2008 15:25:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39490</guid><dc:creator>David Tinjum</dc:creator><slash:comments>0</slash:comments><description>Sage Software has entered the final quarter of its fiscal year, which means of course, that new promotions have arrived. 4 promotions covering Swiftpage, Sage M&amp;amp;S, SalesLogix Mobile, Visual Analyzer and KnowledgeSync are effective through September 26, 2008....(&lt;a href="http://customerfx.com/pages/saleslogix/2008/07/01/fiscal-year-saleslogix-promotions-from-sage.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39490" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/Promotion/default.aspx">Promotion</category></item><item><title>SalesLogix Basics 1 - EditBox control</title><link>http://customerfx.com/pages/customization/2008/06/30/SalesLogix-Basics-1-_2D00_-EditBox-controls.aspx</link><pubDate>Mon, 30 Jun 2008 14:37:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39470</guid><dc:creator>Jason Buss</dc:creator><slash:comments>0</slash:comments><description>&lt;p class="MsoNormal"&gt;I will be putting out a series of write-ups covering basic development topics in the SalesLogix LAN client, so without further ado...&lt;br /&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;font size="5" color="#330000"&gt;SalesLogix Basics
Part 1 - The EditBox control.&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;br /&gt;&lt;/p&gt;
&lt;span style="font-size:10pt;font-family:Arial;"&gt;The standard EditBox is arguably the most commonly
used control in SalesLogix.&lt;span&gt;&amp;nbsp; &lt;/span&gt;It allows
direct user input or modification of data on the current form&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;
&lt;p class="MsoNormal"&gt;&lt;a href="http://customerfx.com/blogs/customization/AccountView.jpg"&gt;&lt;img src="http://customerfx.com/blogs/customization/AccountView.jpg" border="0" alt="" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;


&lt;p class="MsoNormal"&gt;There is really only one property that &lt;i&gt;must&lt;/i&gt; be set for the control, either at run-time or at design
time.&lt;span&gt;&amp;nbsp; &lt;/span&gt;That is the &lt;b&gt;Text&lt;/b&gt; Property.&lt;span&gt;&amp;nbsp; &lt;a href="http://customerfx.com/blogs/customization/DataMapping.jpg"&gt;&lt;img src="http://customerfx.com/blogs/customization/DataMapping.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;


&lt;p class="MsoNormal"&gt;
 
 
  
  
  
  
  
  
  
  
  
  
  
  
 
 
 

 
 
At design time, clicking the button presents a list of
fields for the current view’s parent table (Account, in this case).&lt;span&gt;&amp;nbsp; &lt;/span&gt;Select the desired field, and click ‘OK’.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;At this point, there’s nothing else you need to do.&lt;span&gt;&amp;nbsp; &lt;/span&gt;When committed, the value is updated to the
bound field.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;Otherwise, you can set the Text property to a specific value
using this syntax:&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;Edit1.Text = “Whatever”&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;Here are a few additional
selected Properties which are used frequently.&lt;/b&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;Alignment:&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;The alignment
property determines the alignment of the text within the control.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Enumerated values are; taLeftJustify,
taRightJustify and taCenter.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;Color:&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;The color
property determines the color displayed in the background of the control.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Typically, I use this property to grey out
the field if it has been set to readonly.&lt;span&gt;&amp;nbsp;
&lt;/span&gt;Typically, I’m either setting the control to either “Window” or
“BtnFace”, but using the StringToColor function, you have quite a few color
options.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;Ex.&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;Edit1.Color = Application.BasicFunctions.StringToColor(“Window”)&lt;/p&gt;

&lt;p class="MsoNormal" style="text-indent:0.5in;"&gt;Edit1.Color =
Application.BasicFunctions.StringToColor(“BtnFace”)&lt;/p&gt;

&lt;p class="MsoNormal" style="text-indent:0.5in;"&gt;Edit1.Color =
Application.BasicFunctions.StringToColor(“Red”)&lt;/p&gt;

&lt;p class="MsoNormal" style="text-indent:0.5in;"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal" style="text-indent:0.5in;"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;Enabled(T/F):&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;This
property determines if the control can respond to any user events.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Turning off this property will make the
control completely inaccessible to the user, although they will be able to view
the data.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;FormatType:&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;The
FormatType property determines the Format of the text displayed in the
control.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Enumerated values include;
ftNone, ftInteger, ftDateTime, ftPercent, ftCurrency, ftUser, ftOwner, ftPhone
(Other values exists, but I tend to use these 8 most often.)&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;FormatString:&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;This
property also determines the format of the text in the control, however while
FormatType has a finite list of potential options, FormatString allows you a
little more control used in conjunction with the FormatType Property.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;Ex.&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;Value = 100&lt;/p&gt;

&lt;p class="MsoNormal" style="text-indent:0.5in;"&gt;FormatType = ftCurrency &lt;span&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:0.5in;"&gt;Value = $100.00&lt;/p&gt;

&lt;p class="MsoNormal" style="text-indent:0.5in;"&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;FormatString = %.0m&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:0.5in;"&gt;Value = $100&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:0.5in;"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.5in;"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.5in;"&gt;&lt;b&gt;&lt;i&gt;Height,
Width:&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;These properties
determine the Height and Width of&lt;span&gt;&amp;nbsp; &lt;/span&gt;the
control.&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.5in;"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.5in;"&gt;&lt;b&gt;&lt;i&gt;Top,
Left:&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;These properties control
the position of the control on the form.&lt;/p&gt;

&lt;p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.5in;"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;ReadOnly(T/F)&lt;/i&gt;&lt;/b&gt;:&lt;span&gt;&amp;nbsp; &lt;/span&gt;This
functions similarly to Enabled, but a user is allowed to select the text in the
control.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Typically, I set the color
property of the EditBox as well to designate that the control is not editable.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;RecordChanges(T/F):&lt;/i&gt;&lt;/b&gt;&lt;i&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;/i&gt;If turned on, edits to this control
will&lt;span&gt;&amp;nbsp; &lt;/span&gt;generate a history record
containing the old value from the control.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;i&gt;Name:&lt;/i&gt;&lt;/b&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;The Name property
sets the name of the control which can then be referenced in code.&lt;span&gt;&amp;nbsp; &lt;/span&gt;If you plan on writing any code, I strongly
suggest naming all of your controls.&lt;span&gt;&amp;nbsp;
&lt;/span&gt;It’s much easer to reference “txtAccountType” then “Edit1”, “Edit2”, etc…&lt;/p&gt;


&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal"&gt;I&amp;#39;ll get into Events in the next Basics Article. &lt;br /&gt;&lt;/p&gt;

&amp;nbsp;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39470" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/customization/archive/tags/Controls/default.aspx">Controls</category><category domain="http://customerfx.com/pages/customization/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/customization/archive/tags/input/default.aspx">input</category><category domain="http://customerfx.com/pages/customization/archive/tags/Basics/default.aspx">Basics</category></item><item><title>Visual Analyzer Set Up (Part 3) The Opportunities KPI</title><link>http://customerfx.com/pages/reporting/2008/06/30/visual-analyzer-set-up-part-3-the-opportunities-and-activities-kpi-s.aspx</link><pubDate>Mon, 30 Jun 2008 13:36:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39471</guid><dc:creator>George Jensen</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I have been focusing on the setting up of Sage SalesLogix (SLX)&amp;nbsp;Visual Analyzer (VA), specifally the Microsoft Excel Spread Sheets that support Key Performance Indicators (KPI).&amp;nbsp; The Opportunity KPI is next on the list.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;a href="http://customerfx.com/blogs/reporting/Blog3003.jpg"&gt;&lt;img src="http://customerfx.com/blogs/reporting/Blog3003.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Using the SLX Eval&amp;nbsp;database I have entered the&amp;nbsp;SLX as Admin&amp;nbsp;and I have navigated to the VA main view by using the Nav bar icon.&amp;nbsp; Along the top you see numerous tabs but my only concern for the moment is the one labled KPIs.&amp;nbsp; Under the&amp;nbsp;&amp;#39;Name&amp;#39; list box I have&amp;nbsp;our friend Lee Hogan highlighted with June 2008 selected under End Date.&amp;nbsp;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;As you can see a goal has been established in the VA KPI spread sheet&amp;nbsp;for Lee to have a total of $3,600,000 of&amp;nbsp;open Opportunities in 2008.&amp;nbsp;&amp;nbsp;With standard&amp;nbsp;VA doing the math and since this is June the Goal reflected&amp;nbsp;in the dial is&amp;nbsp;$1,800,000. &lt;/p&gt;
&lt;p&gt;The &amp;quot;Actual&amp;quot; amount reflects the current Pipeline&amp;nbsp;for each user by summing the Weighted amount&amp;nbsp;of all Open Opportunties that have a close date in or before the selected month (In this example June)&amp;nbsp;and the Selected year (2008).&amp;nbsp; This means unless the Opportunities are updated when the new year comes around all open Opportunites with a Close date within the old year will not display.&amp;nbsp; This is the case with our example,&amp;nbsp;Lee shows&amp;nbsp;none but when you dig into his records you will find plenty of open Opportunities from 2007.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;In order to come up with a Opp goal numbers for 2008 in my client database installation, I ran the following&amp;nbsp;SQL Query to help discover goals for this KPI:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;SYSDBA.USERINFO.USERNAME AS [User]&lt;br /&gt;, Sum(SYSDBA.OPPORTUNITY.SalesPotential) As TotalPotential&lt;br /&gt;, Count(SYSDBA.OPPORTUNITY.OpportunityID) AS NumberofOpps&lt;br /&gt;, YEAR(SYSDBA.OPPORTUNITY.CREATEDATE) AS [Year]&lt;br /&gt;, SYSDBA.OPPORTUNITY.ACCOUNTMANAGERID&lt;/p&gt;
&lt;p&gt;FROM SYSDBA.OPPORTUNITY INNER JOIN&amp;nbsp; SYSDBA.USERINFO &lt;br /&gt;ON SYSDBA.OPPORTUNITY.ACCOUNTMANAGERID = SYSDBA.USERINFO.USERID&lt;/p&gt;
&lt;p&gt;--Where SYSDBA.OPPORTUNITY.STATUS = &amp;#39;Closed - Won&amp;#39;&lt;/p&gt;
&lt;p&gt;GROUP BY SYSDBA.USERINFO.USERNAME, YEAR(SYSDBA.OPPORTUNITY.CREATEDATE),SYSDBA.OPPORTUNITY.ACCOUNTMANAGERID&lt;br /&gt;ORDER BY YEAR(SYSDBA.OPPORTUNITY.CREATEDATE), SYSDBA.USERINFO.USERNAME&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;In our evaluation database this query told me that Lee Hogan had 42 Opportunites worth over 18 million dollars in the system in 2007.&lt;/p&gt;
&lt;p&gt;Removing the &amp;quot;--&amp;quot; in front of the SQL Where clause told me that&amp;nbsp;in 2007,&amp;nbsp; Lee won 17 Opportunities which added up to just over 8 million dollars.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;The numbers from these queries&amp;nbsp;told us that Lee Closed and Won just over 40% of the Opportunties, this&amp;nbsp;added up to about 45% of the SalesPotential entered into the system.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;If you gave Lee a goal of $8,800,000 dollars for 2008 based on a 10% increase of Sales from last year and divided&amp;nbsp;that by 12, gives Lee has a monthly goal of $733,333 Sales per month.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Taking in to consideration the 40% succesful close rate, our client&amp;nbsp;decided to multiply this goal by 1.6 giving the user a yearly goal&amp;nbsp;for&amp;nbsp;Open Opportunities of&amp;nbsp;$14,080,000 which rounds out to about $1,173,000 a month.&lt;/p&gt;
&lt;p&gt;To update the KPI spread sheet with data decided above&amp;nbsp;I followed these steps:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;Log into the SLX Database as Admin.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Navigate to the VA interface by the NAV Bar button.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Along the top center of the view you will see a tool bar box with a number of icons,&amp;nbsp; The second icon from the right has a drop down, select the &amp;quot;Manage Configuration&amp;quot; from the list.&amp;nbsp;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://customerfx.com/blogs/reporting/Blog3008.jpg"&gt;&lt;img alt="" src="http://customerfx.com/blogs/reporting/Blog3008.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;The&amp;nbsp;Manage Configuration&amp;nbsp;view will appear. Select the &amp;quot;Open in Excel&amp;quot; button and select the KPIs.xls file from the windows open view.&amp;nbsp;&amp;nbsp;The KPI spread sheet should open.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Navigate to the KPIGoals(2) sheet. &lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;The first thing I did was delete all of the data in the coulmns to the right of colum A.&amp;nbsp;&amp;nbsp;I entered the names of each of the users for each year I want to track based on the list established in Part 1 of this series of posts.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;For each user and year,&amp;nbsp;I added the Goal and then deleted or added the value of &amp;quot;Opps&amp;quot; in column A as necessary.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Save and close the KPIs.xls file.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;On the Manage Configurations view, select the &amp;quot;Load From Excel&amp;quot; button&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Again the select the KPIs.xls file from the windows open view.&amp;nbsp; The data sheet should now be updated with your data.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Now refresh to see the changes in VA. &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;After digging into this KPI,&amp;nbsp;I have to say I feel there could be a better way of looking at the PipeLine.&amp;nbsp; Why would you want to leave Opportunties open in the month they are originally estimated to close?&amp;nbsp; Wouldn&amp;#39;t you&amp;nbsp;continue to manage&amp;nbsp;your Opportunities Estimated Close date through the close of the Opportunity.&amp;nbsp; Isn&amp;#39;t that what managing Opportunties all about?&amp;nbsp; Of course I know that everyone will have thier own opinion but I think a better method of measurement for this dial&amp;nbsp;would be to display the Total Weighted Potential for all Open Opportunites and compare that to an&amp;nbsp;Opportunity Goal&amp;nbsp;based on&amp;nbsp;the Sales Person&amp;nbsp;Closed - Won rate.&amp;nbsp; In other words, if Lee&amp;#39;s Sales goal is $733,000 each month to reach $8,800,000 this year, and you know that on average he closes and wins 45% of the Sales Potential in the system.&amp;nbsp; To establish&amp;nbsp;his Opportunity Goal the equations could be&amp;nbsp;$733,000 multiplied by 1.55 to equal $1,136,000 which says this is the amount of Open Opportunites you want Lee to have in the system at all times.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;I tried to use the standard functiality to get the&amp;nbsp;VA to think this way but was unsuccesful.&amp;nbsp; You will probably see this modification in a future post.&amp;nbsp; Next up, the Activities KPI&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39471" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/reporting/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/reporting/archive/tags/Visual+Analyzer/default.aspx">Visual Analyzer</category></item><item><title>Visual Analyzer Set Up (Part 2)</title><link>http://customerfx.com/pages/reporting/2008/06/27/visual-analyzer-set-up-part-2.aspx</link><pubDate>Fri, 27 Jun 2008 13:36:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39469</guid><dc:creator>George Jensen</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Yesterday we start talking about the installation of&amp;nbsp;Sage SalesLogix Visual Analyzer.&amp;nbsp; As stated in our post Visual Analyzer Set Up (Part 1) we are focusing on establishing the supporting data behind the&amp;nbsp;KPI tab of the Visual Analyzer.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/blogs/reporting/Blog3005.jpg"&gt;&lt;img style="WIDTH:946px;HEIGHT:614px;" src="http://customerfx.com/blogs/reporting/Blog3005.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In part one we created a list of Users who are targets for our KPI&amp;#39;s.&amp;nbsp; We also discussed determining how far back in history do you want be able to make your comparisons.&amp;nbsp; With these two items in hand you are ready to start modifying your KPI spread sheets.&amp;nbsp; I will continue to use the eval database names and data but any examples are from the installation of Sage SalesLogix (SLX) Visual Analyzer (VA) against an actual clients custom database.&lt;/p&gt;
&lt;p&gt;Today we are focusing on the Sales KPI.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/blogs/reporting/Blog3006.jpg"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://customerfx.com/blogs/reporting/Blog3007.jpg"&gt;&lt;img src="http://customerfx.com/blogs/reporting/Blog3007.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;There are two parts to the Sales KPI, &amp;quot;Actual&amp;quot; is the sum of all Closed - Won Opportunities to date,&amp;nbsp; &amp;quot;Goal&amp;quot;&amp;nbsp;is the to date yearly Goal amount as entered in the KPI Spread Sheet.&amp;nbsp; In the example above I have closed one of Lee&amp;#39;s Opportunities worth $800.00.&amp;nbsp; The Eval&amp;nbsp;KPI Spread Sheet has a&amp;nbsp;Goal established for Lee in the year 2008 of&amp;nbsp; $1,200,000.&amp;nbsp; Since this is June 2008, VA did the math and detimined Lee&amp;#39;s Goal to date is $600,000. &lt;/p&gt;
&lt;p&gt;My&amp;nbsp;clients were actually using the SLX standard functionality of Manage Goals.&amp;nbsp; The difference was that my Client had unique goals for every month for each of thier users.&amp;nbsp; I used the following SQL Statement to sum up the Goals entered in SLX&amp;nbsp;so I could&amp;nbsp;use them in the KPI spread sheet.&lt;/p&gt;&lt;pre&gt;SELECT TOP 100 PERCENT SYSDBA.USERINFO.USERNAME AS [User], 
SUM(SYSDBA.QUOTA.AMOUNT) AS [Yearly Goal], MIN(SYSDBA.QUOTA.BEGINDATE) 
AS [Begin Date], MAX(SYSDBA.QUOTA.ENDDATE) AS [End Date] 
FROM SYSDBA.USERINFO INNER JOIN SYSDBA.QUOTA 
  ON SYSDBA.USERINFO.USERID = SYSDBA.QUOTA.USERID 
GROUP BY SYSDBA.USERINFO.USERNAME, YEAR(SYSDBA.QUOTA.BEGINDATE) 
ORDER BY YEAR(SYSDBA.QUOTA.BEGINDATE), SYSDBA.USERINFO.USERNAME&lt;/pre&gt;
&lt;p&gt;This gave me the goals for the year and for 3 years previous for this client.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To update the KPI spread sheet with data with this data I followed these steps:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;Log into the SLX Database as Admin.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Navigate to the VA interface by the NAV Bar button.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Along the top center of the view you will see a tool bar box with a number of icons,&amp;nbsp; The second icon from the right has a drop down, select the &amp;quot;Manage Configuration&amp;quot; from the list.&amp;nbsp;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://customerfx.com/blogs/reporting/Blog3008.jpg"&gt;&lt;img src="http://customerfx.com/blogs/reporting/Blog3008.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;The&amp;nbsp;Manage Configuration&amp;nbsp;view will appear. Select the &amp;quot;Open in Excel&amp;quot; button and select the KPIs.xls file from the windows open view.&amp;nbsp;&amp;nbsp;The KPI spread sheet should open.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Navigate to the KPIGoals(1) sheet. &lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;The first thing I did was delete all of the data in the coulmns to the right of colum A.&amp;nbsp;&amp;nbsp;I then copied in the data from the SQL query into the KPIGoals (1) Spread Sheet. &lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;I then deleted or added the value of &amp;quot;Sales&amp;quot; in column A as necessary.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Save and close the KPIs.xls file.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;On the Manage Configurations view, select the &amp;quot;Load From Excel&amp;quot; button&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Again the select the KPIs.xls file from the windows open view.&amp;nbsp; The data sheet should now be updated with your data.&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;As an example I updated the evaluation KPI data under Lee for the year 2008 to $2,400,000.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/blogs/reporting/Blog3010.jpg"&gt;&lt;img src="http://customerfx.com/blogs/reporting/Blog3010.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The KPI dial for Sales shows the difference. &lt;/p&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/blogs/reporting/Blog3011.jpg"&gt;&lt;img src="http://customerfx.com/blogs/reporting/Blog3011.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Old Lee better get to work :-)&lt;/p&gt;
&lt;p&gt;Next post covers the Opportunity KPI.&amp;nbsp; &lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39469" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/reporting/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/reporting/archive/tags/Visual+Analyzer/default.aspx">Visual Analyzer</category></item><item><title>Visual Analyzer Set Up (Part 1)</title><link>http://customerfx.com/pages/reporting/2008/06/26/visual-analyzer-set-up-part-1.aspx</link><pubDate>Thu, 26 Jun 2008 16:54:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39465</guid><dc:creator>George Jensen</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I have been provided the Opportunity by Customer FX to get to know the new Business Intelligence tool from Sage for SalesLogix called Visual Analyzer.&amp;nbsp; While waiting for the dates of Visual Analyzer Developers course, provided by Sage University, I tried to learn as much about the tool on my own by using the many references from both Sage and QlikTech (Makers of the Qlikview).&amp;nbsp; Although I found this material very helpful and easy to read I still ran into many items that I could not find the answers for.&amp;nbsp; I am happy to report that Visual Analyzer Developers Course was excellent and it really answered a lot of those questions and provided enough guidance on the others that I feel comfortable to start writing on my experience with this tool.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;The next several posts will focus on lessons learned during Installation and set up of the Visual Analyzer (VA) 2.5 in a test environment.&amp;nbsp; One of the first lessons we learned as a company was the tool works great using the SLX evaluation database, but when you apply the tool to an actual existing modified SalesLogix (SLX) database, the challenges begin.&amp;nbsp; The notes provided in these posts will come from lessons learned while establishing this tool against actual client database with the purpose of identifying the challenges you will face during your implementation. &lt;/p&gt;
&lt;p&gt;CFX strongly encourages you to first establish a test environment using a copy of the database you plan to install VA in.&amp;nbsp; Although the installation using the SLX VA Implementation guide is pretty straight forward, practicing against a test system allows the user the ability to make mistakes with out effecting the production environment.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;As stated before most of the documentation is adequate, there were very few issues we incountered&amp;nbsp;during installing of any of the components.&amp;nbsp; When&amp;nbsp;installing the&amp;nbsp;QlikView server on a Microsoft Windows 2003 machine we had to stop the CRM Indexer Service prior to running the installation wizard.&amp;nbsp; If we did not, the installation failed.&amp;nbsp; One other important note is that we did not see a way of updating the User Security in SLX version 6.2.6 as stated on page 13 of the implementation guide.&amp;nbsp; It has been available in installation of 7.2.1.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Finally,&amp;nbsp;we feel it is important for you to understand that VA out of the box&amp;nbsp;assumes that you are using standard SLX functionality such as Opportunities, History and Activities to track your Sales force.&amp;nbsp; If this is not the case then VA will need to be modified to your internal processes for the KPI&amp;#39;s to work.&amp;nbsp; You must have a QlikView Enterprise license and some training to modify the .qvw file.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;During the installation process you are instructed to set up the KPI data sheets. The installation guide fails to&amp;nbsp;go in to detail about each of the KPI so I thought I would dig into to this topic a little deeper. &lt;/p&gt;
&lt;p&gt;VA has 10 standard Key Performance Indicators (KPI) and an important task in a successful implementation is deciding which KPI&amp;#39;s are important to your company.&amp;nbsp; Since this article would be a mile long if I went into the details of each KPI in one post, today I will focus on first establishing the list of Users you are going to track.&amp;nbsp; I will follow up with&amp;nbsp;KPI&amp;#39;s and the supporting details in future posts over the next several days.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;The&amp;nbsp;KPI data displayed in VA is a combination of data derived from your SalesLogix data and goal data input by your company into supporting KPI Microsoft Excel Spread Sheets.&amp;nbsp; These Spread Sheets are what we need to modify.&amp;nbsp; The spread sheets are accessible through SLX when logged in as ADMIN, once logged in navigate to the VA interface.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/blogs/reporting/WindowsLiveWriter/VisualAnalyzerSetUpPart1_A765/Blog3001_6.jpg"&gt;&lt;img style="BORDER-TOP-WIDTH:0px;BORDER-LEFT-WIDTH:0px;BORDER-BOTTOM-WIDTH:0px;BORDER-RIGHT-WIDTH:0px;" height="121" alt="Blog3001" src="http://customerfx.com/blogs/reporting/WindowsLiveWriter/VisualAnalyzerSetUpPart1_A765/Blog3001_thumb_2.jpg" width="481" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;On the top middle of the view you find a tool bar box with icons.&amp;nbsp; The second icon from the right has a drop down, select the &amp;quot;Manage Configurations&amp;quot; from the list and the following view appears. &lt;/p&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/blogs/reporting/WindowsLiveWriter/VisualAnalyzerSetUpPart1_A765/Blog3002_10.jpg"&gt;&lt;img style="BORDER-TOP-WIDTH:0px;BORDER-LEFT-WIDTH:0px;BORDER-BOTTOM-WIDTH:0px;BORDER-RIGHT-WIDTH:0px;" height="494" alt="Blog3002" src="http://customerfx.com/blogs/reporting/WindowsLiveWriter/VisualAnalyzerSetUpPart1_A765/Blog3002_thumb_4.jpg" width="544" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;This interface allows the Admin user to manage the data for your KPI&amp;#39;s along with several other items we will get into in future posts.&amp;nbsp; With the KPI&amp;#39;s sheet active, you will see a list of the standard 10 KPI&amp;#39;s.&amp;nbsp; As you highlight the rows on the left the list to the right displays the corresponding spread sheets data.&amp;nbsp; (We will get into the exact steps of modifying these sheets in the next post.)&amp;nbsp; Right now, as you look at each of the sheets you will notice the&amp;nbsp;User column contians a list of users.&amp;nbsp; VA uses this column&amp;nbsp;to match against the data in SLX.&amp;nbsp; The match is to thename in this coulmn to&amp;nbsp;SLX USERINFO.USERNAME field.&amp;nbsp;&amp;nbsp;This is why our first step in establsihing the KPI&amp;#39;s in your system is discovering the list of users we want to track under the KPI&amp;#39;s. &lt;/p&gt;
&lt;p&gt;Since the User Name in the KPI Spread Sheet has to be an exact match against the User Name field in SLX,&amp;nbsp; I&amp;nbsp;thought the best way to collect the list of names was to run a SQL Query against the SLX USERINFO table.&amp;nbsp; I used the following query based on what I know of the company I am working with. &lt;/p&gt;
&lt;p&gt;SELECT Title,Username, Department,Region&lt;/p&gt;
&lt;p&gt;FROM SYSDBA.USERINFO&lt;/p&gt;
&lt;p&gt;WHERE (DEPARTMENT = &amp;#39;Sales&amp;#39;)&lt;/p&gt;
&lt;p&gt;This provided me a fairly accurate list and I was able to work with the client to narrow it down.&amp;nbsp; Right now this list is simply a reference but we have a start.&amp;nbsp; The next thing to think about is how far back in History do you want to query.&amp;nbsp;&amp;nbsp;Standard VA comes with&amp;nbsp;the ability to query data in the years 2004 through 2008.&amp;nbsp;&amp;nbsp;Once you have the list of Users and the number of years of history you want VA to&amp;nbsp;query you are ready to start modifying the KPI sheets with your companies goals.&amp;nbsp; In the next article we will look at the Sales KPI and how we came up with the data to populate the supporting spread sheet.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Just to clarify the term &amp;quot;we&amp;quot; used through out the post, I have the distinct pleasure of working with Larry Halsrud (Director of Support at Customer FX) on this project. &lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39465" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/reporting/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/reporting/archive/tags/Visual+Analyzer/default.aspx">Visual Analyzer</category></item><item><title>Running SalesLogix Web on IIS7</title><link>http://customerfx.com/pages/crmdeveloper/2008/06/24/running-saleslogix-web-on-iis7.aspx</link><pubDate>Tue, 24 Jun 2008 21:31:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39463</guid><dc:creator>Ryan Farley</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I &lt;a href="http://customerfx.com/pages/crmdeveloper/2008/05/02/saleslogix-7-2-web-on-vista.aspx"&gt;blogged a while back about using Vista&lt;/a&gt; for developing for SalesLogix 7.2 Web without using IIS but instead using the ASP.NET Dev Server. I wanted to outline some additional tweaks you can make to get the SalesLogix portals running on full-blown IIS7 on Vista as well. &lt;/p&gt;&lt;p&gt;While it is not &lt;i&gt;officially&lt;/i&gt; supported to run SalesLogix 7.2 Web on IIS7, you can make some tweaks to get things running. The first thing you&amp;#39;ll need to do is turn on (install) the IIS6 compatibility for IIS7. Don&amp;#39;t bother looking for that in the IIS console, you add that by going to Add/Remove in Control Panel.&lt;/p&gt;&lt;p&gt;&lt;a href="http://customerfx.com/blogs/crmdeveloper/WindowsFeatures_IISCompat.jpg"&gt;&lt;img src="http://customerfx.com/blogs/crmdeveloper/WindowsFeatures_IISCompat.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;You need to add the IIS 6 Management Compatibility, at a minimum. To be honest, while trying to get SalesLogix working on IIS7 I tried all sorts of combinations of settings, so there may be others to add as well (leave a comment and I can check my settings to compare). &lt;/p&gt;&lt;p&gt;Once everything is installed, the second item has to do with the application pool for the deployed SalesLogix portal. In IIS, create an app pool for your SalesLogix Web portals. Make sure it is set to use .NET 2.0, but &lt;b&gt;the important thing to set here is to use a Classic pipeline&lt;/b&gt;, not integrated.&lt;/p&gt;&lt;p&gt;&lt;a href="http://customerfx.com/blogs/crmdeveloper/IIS7_ClassicAppPool.jpg"&gt;&lt;img src="http://customerfx.com/blogs/crmdeveloper/IIS7_ClassicAppPool.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Of course, also make sure your deployed SalesLogix portals are using this new app pool as well. So that is really it. You should now have it working. One more thing to note, if you&amp;#39;re running 64-bit Vista, make sure you also read &lt;a href="http://codesnap.wordpress.com/2008/05/04/saleslogix-web-client-working-on-vista-64/" target="_blank"&gt;Mark Dykun&amp;#39;s post&lt;/a&gt; on the additional necessary tweaks you&amp;#39;ll have to make there as well. Good luck!&lt;br /&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39463" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/Vista/default.aspx">Vista</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/IIS/default.aspx">IIS</category></item><item><title>Jul 21, 2008 - Merging Records - SalesLogix v6.2 and Above</title><link>http://customerfx.com/pages/events/2008/06/24/Jul-21_2C00_-2008-_2D00_-Merging-Records-_2D00_-SalesLogix-v6.2-and-Above.aspx</link><pubDate>Tue, 24 Jun 2008 17:15:35 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39462</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;Attend the Workshop - Merging Records - SalesLogix v6.2 and Above!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Event details:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Monday, July 21, 2008 
&lt;li&gt;From 2:00 PM Central to 2:30 PM Central&lt;br /&gt;&lt;i&gt;(7:00 PM GMT to 7:30 PM GMT)&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a class="CommonTextButtonForward" href="http://customerfx.com/pages/events/pages/merging-records-saleslogix-v6-2-and-above.aspx"&gt;See Workshop Details&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Register Today!&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39462" width="1" height="1"&gt;</description></item><item><title>Aug 04, 2008 - Using The Tools/Options Menu - SalesLogix v6.2 and Above</title><link>http://customerfx.com/pages/events/2008/06/24/Aug-04_2C00_-2008-_2D00_-Using-The-Tools_2F00_Options-Menu-_2D00_-SalesLogix-v6.2-and-Above.aspx</link><pubDate>Tue, 24 Jun 2008 15:45:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39460</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;Attend the Workshop - Using The Tools/Options Menu - SalesLogix v6.2 and Above!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Event details:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Monday,&amp;nbsp;August 04, 2008 
&lt;li&gt;From 2:00 PM Central to 2:30 PM Central&lt;br /&gt;&lt;i&gt;(7:00 PM GMT to 7:30 PM GMT)&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a class="CommonTextButtonForward" href="http://customerfx.com/pages/events/pages/using-the-tools-options-menu-saleslogix-v6-2-and-above.aspx"&gt;See Workshop Details&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Register Today!&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39460" width="1" height="1"&gt;</description></item><item><title>Displaying SQL Views in SalesLogix</title><link>http://customerfx.com/pages/integrationblog/2008/06/20/displaying-sql-views-in-saleslogix.aspx</link><pubDate>Fri, 20 Jun 2008 20:34:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39455</guid><dc:creator>Kris Halsrud</dc:creator><slash:comments>1</slash:comments><description>A great feature, introduced in SalesLogix 7.0 is the ability to embed SQL views in SalesLogix, just as if they were a standard SalesLogix table. SQL views, can be a tremendously flexible solution to roll-up/aggregate data from various data sources into a consolidated source. Obviously. use of the SQL views is predicated on the ability for users to access the data sources where the view originates. For this reason, utilizing SQL views is not a viable solution for remote users (Unless you utilize web...(&lt;a href="http://customerfx.com/pages/integrationblog/2008/06/20/displaying-sql-views-in-saleslogix.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39455" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SQL+Server/default.aspx">SQL Server</category><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix/default.aspx">SalesLogix</category></item><item><title>Jul 15, 2008 - SalesLogix v7.5 Sneak Peek Live - A Customer FX Exclusive</title><link>http://customerfx.com/pages/events/2008/06/19/Jul-15_2C00_-2008-_2D00_-SalesLogix-v7.5-Sneak-Peek-Live-_2D00_-A-Customer-FX-Exclusive.aspx</link><pubDate>Thu, 19 Jun 2008 18:10:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39445</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;b&gt;&lt;i&gt;Attend the Workshop - SalesLogix v7.5 Sneak Peek Live - A Customer FX Exclusive!&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Event details:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tuesday, July 15, 2008 &lt;/li&gt;
&lt;li&gt;From 12:00 PM Central to 1:00 PM Central&lt;br /&gt;&lt;i&gt;(5:00 PM GMT to 6:00 PM GMT)&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Cost: FREE!&lt;br /&gt;&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://customerfx.com/pages/events/pages/saleslogix-v7-5-sneak-peek.aspx" class="CommonTextButtonForward"&gt;See Workshop Details&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Register Today!&lt;/b&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39445" width="1" height="1"&gt;</description></item><item><title>MAS 90/200 Extended Product Description</title><link>http://customerfx.com/pages/integrationblog/2008/06/17/mas-90-200-extended-product-description.aspx</link><pubDate>Tue, 17 Jun 2008 20:15:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39442</guid><dc:creator>Kris Halsrud</dc:creator><slash:comments>0</slash:comments><description>I thought I would post a quick note on how to find the extended description of an item in the MAS 90/200 database structure.  I frequently forget which tables are needed in order to get the extended description....(&lt;a href="http://customerfx.com/pages/integrationblog/2008/06/17/mas-90-200-extended-product-description.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39442" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/integrationblog/archive/tags/MAS+90/default.aspx">MAS 90</category><category domain="http://customerfx.com/pages/integrationblog/archive/tags/MAS+200/default.aspx">MAS 200</category><category domain="http://customerfx.com/pages/integrationblog/archive/tags/MAS/default.aspx">MAS</category></item><item><title>DynaLink 7.0 Map Limitations</title><link>http://customerfx.com/pages/integrationblog/2008/06/16/dynalink-7-0-map-limitations.aspx</link><pubDate>Mon, 16 Jun 2008 18:06:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39439</guid><dc:creator>Kris Halsrud</dc:creator><slash:comments>0</slash:comments><description>Sage DynaLink 7.0, which is a Sage branded product to integrate Sage MAS 90/200 or 500 with SalesLogix is one of the current ways of tying these systems together. Sage is working on ERP Link which will eventually be the replacement for DynaLink. However, the ERP link has been in in internal development at Sage for a long time and is not expected to be available until 4Q 2008 at the earliest. For now DynaLink is the one Sage solution available if you want to integrate MAS and SalesLogix without building...(&lt;a href="http://customerfx.com/pages/integrationblog/2008/06/16/dynalink-7-0-map-limitations.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39439" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/integrationblog/archive/tags/DynaLink/default.aspx">DynaLink</category><category domain="http://customerfx.com/pages/integrationblog/archive/tags/MAS/default.aspx">MAS</category></item><item><title>Workaround for hanging mainview objects</title><link>http://customerfx.com/pages/customization/2008/06/16/workaround-for-hanging-mainview-objects.aspx</link><pubDate>Mon, 16 Jun 2008 14:13:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39437</guid><dc:creator>Jason Buss</dc:creator><slash:comments>2</slash:comments><description>&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;In SalesLogix, you have the ability to invoke a form as a main view object.&lt;span&gt;&amp;nbsp; &lt;/span&gt;This is handy for a number of reasons, but there appears to be one major drawback.&lt;span&gt;&amp;nbsp; &lt;/span&gt;When invoking a form as a main view object, sometimes the form can take an inordinate amount of time to open, giving the sense that the system has hung.&lt;/p&gt;&amp;nbsp; 
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;Instead of opening a main view object, you can avoid the delay in opening the form by simply invoking the new form, and then using global variables to pass any necessary information back to the invoked form.&lt;/p&gt;&amp;nbsp; 
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;This sample code is for an account tab which&amp;nbsp;calls an edit view containing a single picklist control, which sets the current Account Type value.&lt;/p&gt;&amp;nbsp; 
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;&lt;a href="http://beta.customerfx.com/blogs/customization/Test.JPG"&gt;&lt;img src="http://beta.customerfx.com/blogs/customization/Test.JPG" border="0" alt="" /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;a href="http://beta.customerfx.com/blogs/customization/EditView.JPG"&gt;&lt;img src="http://beta.customerfx.com/blogs/customization/EditView.JPG" border="0" height="111" width="544" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;&amp;nbsp; 
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;&lt;span&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;Using a main view object, a recordset is opened, getting the current type value, which is then passed on to the main view form.&lt;span&gt;&amp;nbsp; &lt;/span&gt;On a modal result of “mrOK”, the recordset is updated with whatever value was selected in the edit view.&lt;span&gt;&amp;nbsp; &lt;/span&gt;The mainview itself contains no code;&lt;span&gt;&amp;nbsp; &lt;/span&gt;View defaults and dataupdates are performed by the originating script.&lt;/p&gt;&amp;nbsp; 
&lt;blockquote&gt;&lt;i&gt;Sub cmdMainViewClick(Sender)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim objRS&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim objMainView, objDetail&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objRS = Application.CreateObject(&amp;quot;ADODB.Recordset&amp;quot;)&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; With objRS&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .LockType = adLockOptimistic&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .Open &amp;quot;Select type from account where accountid = &amp;#39;&amp;quot; &amp;amp; Application.BasicFunctions.CurrentAccountID &amp;amp; &amp;quot;&amp;#39;&amp;quot;, Application.GetNewConnection&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objMainView = Application.MainViews.Add(&amp;quot;Personal:Set Account Type&amp;quot;, 0, False)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objDetail = objMainView.DetailsView&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objMainView.BorderStyle = 3&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objMainView.Caption = Application.Translator.Localize(&amp;quot;Set Account Type&amp;quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objDetail.pklAccountType.Text = .Fields(&amp;quot;Type&amp;quot;).Value &amp;amp; &amp;quot;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If objMainView.ShowModal = mrOK Then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .Fields(&amp;quot;Type&amp;quot;).Value = objDetail.pklAccountType.Text&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .Update&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objDetail = Nothing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objMainView = Nothing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .Close&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End With&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objRS = Nothing&lt;br /&gt;End Sub&lt;/i&gt;&lt;i&gt;&lt;/i&gt;&lt;/blockquote&gt;Using the DoInvoke function instead simplifies the process of launching the view, however you will need to add any code to update data to the invoked form in order to be able to control committing the data when closing the form. 
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;I order to launch the form, I simply set any parameters I need to global variables, then invoke the form:&lt;/p&gt;
&lt;blockquote&gt;&lt;i&gt;Sub cmdDoInvokeClick(Sender)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Application.BasicFunctions.GlobalInfoSet &amp;quot;gAccountID&amp;quot;, Application.BasicFunctions.CurrentAccountID&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Application.BasicFunctions.DoInvoke &amp;quot;View&amp;quot;, &amp;quot;Personal:Set Account Type&amp;quot;&lt;br /&gt;End Sub&lt;/i&gt;&lt;/blockquote&gt;&amp;nbsp;&amp;nbsp; 
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;On the WhenOpen event of the form, I set any initial values I need on the form using the globals I set before invoking the edit view.&lt;/p&gt;&amp;nbsp; 
&lt;blockquote&gt;&lt;i&gt;Sub AXFormOpen(Sender)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Application.BasicFunctions.GlobalInfoExists(&amp;quot;gAccountID&amp;quot;) Then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; strAccountID = Application.BasicFunctions.GlobalInfoFor(&amp;quot;gAccountID&amp;quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Form.Caption = &amp;quot;Set Account Type&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Form.ModalResult = mrNone&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; pklAccountType.Text = GetField(&amp;quot;TYPE&amp;quot;, &amp;quot;ACCOUNT&amp;quot;, &amp;quot;ACCOUNTID = &amp;#39;&amp;quot; &amp;amp; strAccountID &amp;amp; &amp;quot;&amp;#39;&amp;quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end If&lt;br /&gt;End Sub&lt;/i&gt;&lt;i&gt;&lt;/i&gt;&lt;/blockquote&gt;&amp;nbsp; 
&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;On the whenclick event of the ok button, I update values as necessary and close the view:&lt;/p&gt;&amp;nbsp; 
&lt;blockquote&gt;&lt;i&gt;&lt;br /&gt;Sub cmdOKClick(Sender)&lt;br /&gt;Dim objSLX&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Application.BasicFunctions.GlobalInfoExists(&amp;quot;gAccountID&amp;quot;) Then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objSLX = New SLX_DB&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objSLX.ExecuteSql &amp;quot;update account set type = &amp;#39;&amp;quot; &amp;amp; pklAccountType.Text &amp;amp; &amp;quot;&amp;#39; where accountid = &amp;#39;&amp;quot; &amp;amp; strAccountID &amp;amp; &amp;quot;&amp;#39;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Application.BasicFunctions.GlobalInfoClear &amp;quot;gAccountID&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Form.ModalResult = mrOK&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br /&gt;End Sub&lt;/i&gt;&lt;/blockquote&gt;
&lt;p&gt;As a best practice, using the DoInvoke function isn&amp;#39;t ideal.&amp;nbsp; For now though, it seems to be the most effective way to get around that pesky delay when opening mainview objects.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;(The bundle contains the views and code as outlined above)&lt;/p&gt;
&lt;p&gt;&lt;a href="http://beta.customerfx.com/blogs/customization/Invoke%20Test.zip"&gt;Invoke Test.zip&lt;/a&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39437" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/customization/archive/tags/SalesLogix+LAN+Client/default.aspx">SalesLogix LAN Client</category><category domain="http://customerfx.com/pages/customization/archive/tags/Customizations/default.aspx">Customizations</category><category domain="http://customerfx.com/pages/customization/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/customization/archive/tags/Development/default.aspx">Development</category><category domain="http://customerfx.com/pages/customization/archive/tags/mainview+objects/default.aspx">mainview objects</category><category domain="http://customerfx.com/pages/customization/archive/tags/invoke/default.aspx">invoke</category></item><item><title>SQLBrowser</title><link>http://customerfx.com/pages/beta/2008/06/10/sqlbrowser.aspx</link><pubDate>Tue, 10 Jun 2008 22:21:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39434</guid><dc:creator>Ryan Farley</dc:creator><slash:comments>0</slash:comments><description>SQLBrowser is a utility that will help you manage multiple SalesLogix databases. As a SalesLogix business partner, we can have hundreds of SalesLogix databases on our network at any given moment. With SQLBrowser you just log onto a SQL Server instance on the network and you&amp;#39;ll see which SalesLogix databases are hosted there, what version of SalesLogix they are for, which SalesLogix server they are hosted on, and when they were created....(&lt;a href="http://customerfx.com/pages/beta/2008/06/10/sqlbrowser.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39434" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/beta/archive/tags/Labs/default.aspx">Labs</category><category domain="http://customerfx.com/pages/beta/archive/tags/Developer+Tools/default.aspx">Developer Tools</category><category domain="http://customerfx.com/pages/beta/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/beta/archive/tags/SQL+Server/default.aspx">SQL Server</category><category domain="http://customerfx.com/pages/beta/archive/tags/Download/default.aspx">Download</category></item><item><title>Integrating the SalesLogix Lead Capture Portal with an Existing Website</title><link>http://customerfx.com/pages/crmdeveloper/2008/06/10/integrating-the-saleslogix-lead-capture-portal-with-an-existing-website.aspx</link><pubDate>Tue, 10 Jun 2008 21:35:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39433</guid><dc:creator>Ryan Farley</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;It&amp;#39;s much easier than many might think to fully integrate the SalesLogix 7.2 Lead Capture portal into an existing website. For a sample of this, I grabbed a free online website template and put it up as a website and &lt;b&gt;&lt;i&gt;within 5 minutes&lt;/i&gt;&lt;/b&gt; (seriously, 5 minutes) I had the Lead Capture portal fully integrated into the site. Brain-dead easy. Best of all, no frames. &lt;/p&gt;
&lt;p&gt;So, I&amp;#39;ve created a free workshop on June 24th (Tuesday) at 2:00PM Central to cover this topic and demonstrate how to integrate the lead capture portal with an existing website. If you&amp;#39;d like to attend you can register here: &lt;a href="http://customerfx.com/pages/events/2008/06/10/Jun-24_2C00_-2008-_2D00_-Integrating-the-SalesLogix-7.2-Lead-Capture-Portal-with-an-Existing-Website.aspx"&gt;Click to Register&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Join me on the workshop (it&amp;#39;s free) and we can take a look at this together and discuss different scenarios for websites built on different technologies (doesn&amp;#39;t need to be an ASP.NET site).&lt;/p&gt;&lt;p&gt;See you there.&amp;nbsp; &lt;br /&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39433" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/Integration/default.aspx">Integration</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/Workshop/default.aspx">Workshop</category><category domain="http://customerfx.com/pages/crmdeveloper/archive/tags/Lead+Capture+Portal/default.aspx">Lead Capture Portal</category></item><item><title>Jun 24, 2008 - Integrating the SalesLogix 7.2 Lead Capture Portal with an Existing Website</title><link>http://customerfx.com/pages/events/2008/06/10/Jun-24_2C00_-2008-_2D00_-Integrating-the-SalesLogix-7.2-Lead-Capture-Portal-with-an-Existing-Website.aspx</link><pubDate>Tue, 10 Jun 2008 20:54:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39431</guid><dc:creator>Ryan Farley</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;b&gt;&lt;i&gt;Attend the Workshop - Integrating the SalesLogix 7.2 Lead Capture Portal with an Existing Website!&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Event details:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Tuesday, June 24, 2008&lt;/li&gt;&lt;li&gt;From 2:00 PM Central to 2:30 PM Central&lt;br /&gt;&lt;i&gt;(7:00 PM GMT to 7:30 PM GMT)&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Cost: &lt;i&gt;&lt;b&gt;FREE!&lt;/b&gt;&lt;br /&gt;&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href="http://customerfx.com/pages/events/pages/integrating-the-saleslogix-7-2-lead-capture-portal-with-an-existing-website.aspx" class="CommonTextButtonForward"&gt;See Workshop Details&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Register Today!&lt;/b&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39431" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/events/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category><category domain="http://customerfx.com/pages/events/archive/tags/Workshop/default.aspx">Workshop</category><category domain="http://customerfx.com/pages/events/archive/tags/Integration/default.aspx">Integration</category></item><item><title>Jul 07, 2008 - Navigating Reports - SalesLogix v7.x</title><link>http://customerfx.com/pages/events/2008/06/10/Jul-07_2C00_-2008-_2D00_-Navigating-Reports-_2D00_-SalesLogix-v7.x.aspx</link><pubDate>Tue, 10 Jun 2008 14:02:11 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:39429</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;Attend the Workshop - Navigating Reports - SalesLogix v7.x!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Event details:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Monday, July 07, 2008 
&lt;li&gt;From 2:00 PM Central to 2:30 PM Central&lt;br /&gt;&lt;i&gt;(7:00 PM GMT to 7:30 PM GMT)&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a class="CommonTextButtonForward" href="http://customerfx.com/pages/events/pages/navigating-reports-saleslogix-v7-x.aspx"&gt;See Workshop Details&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Register Today!&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=39429" width="1" height="1"&gt;</description></item></channel></rss>