<?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>Is it possible to do a SalesLogix Mail Merge on Lookup Results without saving them as a Group?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/16/Is-it-possible-to-do-a-SalesLogix-Mail-Merge-on-Lookup-Results-without-saving-them-as-a-Group_3F00_.aspx</link><pubDate>Wed, 16 May 2012 20:46:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45680</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>Is there a way to do a mail merge based on lookup results. For example, let&amp;#39;s say I do a look up by CITY, is there a way to then do a mail merge based on those results?

I&amp;#39;ve tried but it doesn&amp;#39;t pick up my lookup results as a group, do I have to create a group to do this?

We are using SalesLogix LAN v7.2.1.

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/16/Is-it-possible-to-do-a-SalesLogix-Mail-Merge-on-Lookup-Results-without-saving-them-as-a-Group_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45680" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>Changing the Default Operator in the SalesLogix Lookup Control in the SalesLogix 7.5.4 Web Client</title><link>http://customerfx.com/pages/integrationblog/2012/05/15/changing-the-default-operator-in-the-saleslogix-lookup-control-in-the-saleslogix-7-5-4-web-client.aspx</link><pubDate>Tue, 15 May 2012 10:15:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45659</guid><dc:creator>Kris Halsrud</dc:creator><slash:comments>0</slash:comments><description>  &lt;p&gt;In the SalesLogix web client, the Lookup Control is a custom composite control that is contained in a compiled Sage assembly.&amp;nbsp; When you perform a lookup with this control, the operators available are based upon the type of field being looked up for.&amp;nbsp; For string fields, the default operator is “Contains”&lt;/p&gt; &lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-Lookup-Control_0BC4F737.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-Lookup-Control_thumb_4F992B8E.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix Lookup Control" alt="SalesLogix Lookup Control" border="0" height="473" width="644" /&gt;&lt;/a&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The reason the “Contains” operator is the default is because it is the first option on the drop down list.&amp;nbsp; Luckily the drop down list is not constructed from within the Sage Controls assembly.&amp;nbsp; Rather a client library is used to add the operators using Ext-JS.&lt;/p&gt;    &lt;p&gt;The code for this client library is in the VFS under Portal Manager…Sage SalesLogix…Support Files…JScript…Sage-Controls.&amp;nbsp; There are two files involved:&lt;/p&gt;    &lt;ul&gt;&lt;li&gt;Sage-Controls-Lookup.JS&lt;/li&gt;&lt;li&gt;Sage-Controls.JS&lt;/li&gt;&lt;/ul&gt;        &lt;p&gt;The Sage-Controls is a composite of all of the other script files and is minified.&amp;nbsp; This is the file that is actually used by the deployed web site.&lt;/p&gt;        &lt;p&gt;If we look in the human-readable Sage-Controls-Lookup.js file we can see code around line 80 that looks like:&lt;/p&gt;    &lt;blockquote&gt;&lt;p&gt;&lt;font color="#0000ff"&gt;LookupControl.__operators = {     &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;System.String&amp;quot;: [       &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_Contains&amp;quot;, value: &amp;quot;ct&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_StartsWith&amp;quot;, value: &amp;quot;sw&amp;quot;},&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_Equal&amp;quot;, value: &amp;quot;eq&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_NotEqual&amp;quot;, value: &amp;quot;ne&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_GT&amp;quot;, value: &amp;quot;gt&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_GE&amp;quot;, value: &amp;quot;ge&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_LT&amp;quot;, value: &amp;quot;lt&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_LE&amp;quot;, value: &amp;quot;le&amp;quot;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;    &lt;p&gt;This code is what is constructing the list of Operators available in the Lookup for a string field lookup.&lt;/p&gt;    &lt;p&gt;If we wanted to change the lookup behavior so that Starts With is the default option, we simply need to make that operator the first one added to the list.&lt;/p&gt;    &lt;blockquote&gt;&lt;p&gt;&lt;font color="#0000ff"&gt;LookupControl.__operators = {     &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;System.String&amp;quot;: [       &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_StartsWith&amp;quot;, value: &amp;quot;sw&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_Contains&amp;quot;, value: &amp;quot;ct&amp;quot;},&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; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_Equal&amp;quot;, value: &amp;quot;eq&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_NotEqual&amp;quot;, value: &amp;quot;ne&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_GT&amp;quot;, value: &amp;quot;gt&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_GE&amp;quot;, value: &amp;quot;ge&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_LT&amp;quot;, value: &amp;quot;lt&amp;quot;},      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {name: &amp;quot;LookupControl_Operator_LE&amp;quot;, value: &amp;quot;le&amp;quot;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt; Now to make this change actually take effect, you need to modify the minified sage-controls.js file.&amp;nbsp; The easiest way to do this is to search for “LookupControl_Operator_StartsWith”.&amp;nbsp; It should be around line 719.&amp;nbsp; Since it is minified there are no line breaks or spacing but if you make the equivalent change on this line, when you save these files and deploy, your lookup should then default to the operator at the top of your list.&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45659" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix+7.5.4/default.aspx">SalesLogix 7.5.4</category><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category></item><item><title>How does the Record Changes property work on a datagrid?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/14/How-does-the-Record-Changes-property-work-on-a-datagrid_3F00_.aspx</link><pubDate>Mon, 14 May 2012 21:34:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45673</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>Can anyone explain why the &amp;#39;record changes&amp;#39; property check box on a datagrid (in my case Opportunity Products) doesnt record any changes made to the values in it.

Also, can anyone recommend an alternative to record any changes made to a product here?

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/14/How-does-the-Record-Changes-property-work-on-a-datagrid_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45673" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>How can I create seperate icons that can be used depending on which remote office they are at? Are there specific parameters that I can use in the Shortcut?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/14/How-can-I-create-seperate-icons-that-can-be-used-depending-on-which-remote-office-they-are-at_3F00_-Are-there-specific-parameters-that-I-can-use-in-the-Shortcut_3F00_.aspx</link><pubDate>Mon, 14 May 2012 21:30:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45672</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>I have users that travel between offices that are running SalesLogix remote office and would like to create seperate icons that can be used depending on which remote office they are at. Are there any parameters that can be included into the shortcut or any other way that this might be acomplished. 

We use windows authentication so the users would have to connect in slowly to the last connection used, then log out in order to change the connection manually. 

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/14/How-can-I-create-seperate-icons-that-can-be-used-depending-on-which-remote-office-they-are-at_3F00_-Are-there-specific-parameters-that-I-can-use-in-the-Shortcut_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45672" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>Jun 11, 2012 - SpeedSearch - Not Just for Support Tickets Anymore. SalesLogix v6.2 and above</title><link>http://customerfx.com/pages/events/2012/05/14/Jun-11_2C00_-2012-_2D00_-SpeedSearch-_2D00_-Not-Just-for-Support-Tickets-Anymore.-SalesLogix-v6.2-and-above.aspx</link><pubDate>Mon, 14 May 2012 21:27:20 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45671</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 - SpeedSearch - Not Just for Support Tickets Anymore. SalesLogix v6.2 and above!&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Event details:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Monday, June 11, 2012&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;/ul&gt;&lt;p&gt;&lt;a href="http://customerfx.com/pages/events/pages/speedsearch-not-just-for-support-tickets-anymore-saleslogix-v6-2-and-above.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=45671" width="1" height="1"&gt;</description></item><item><title>Update Records Quickly and Easily with Global Replace</title><link>http://customerfx.com/pages/inbox/2012/05/14/update-records-quickly-and-easily-with-global-replace.aspx</link><pubDate>Mon, 14 May 2012 05:32:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45667</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>1</slash:comments><description>Workshop today at 2pm CDT.

Updating records can be a tedious task, unless you&amp;#39;re using the Global Replace feature of SalesLogix.  Whether you only need to perform this task sporadically or on a regular basis, you will find that being familiar with Global Replace is beneficial. Join us for today&amp;#39;s free, end-user focused workshop today!...(&lt;a href="http://customerfx.com/pages/inbox/2012/05/14/update-records-quickly-and-easily-with-global-replace.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45667" width="1" height="1"&gt;</description></item><item><title>What is wrong with my sql Statement?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/11/What-is-wrong-with-my-sql-Statement_3F00_What-is-wrong-with-my-sql-Statement_3F00_.aspx</link><pubDate>Fri, 11 May 2012 21:28:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45662</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>When I try to execute the following sql in script i get the error failed to parse sql.

However, if i run this sql statment in the server management studio it runs fine. Any ideas why SLX doesnt like it? Im guesiing its to do with the use of the 
[sysdba].[udf_GetRecursiveChildren] function?

strSQL = &amp;quot;SELECT Z_ACCOUNT_NL.Z_REVYEAR as Year, Z_ACCOUNT_NL.Z_REVTYPE as Product, sum(Z_ACCOUNT_NL.Z_REVAMNT) as Spend &amp;quot; &amp;amp; _
&amp;quot;FROM ACCOUNT INNER JOIN Z_ACCOUNT_NL ON ACCOUNT.ACCOUNTID = Z_ACCOUNT_NL.ACCOUNTID &amp;quot; &amp;amp; _
&amp;quot;WHERE ACCOUNT.ACCOUNTID = &amp;#39;&amp;quot; &amp;amp; AccID &amp;amp; &amp;quot;&amp;#39; or ACCOUNT.ACCOUNTID &amp;quot; &amp;amp; _
&amp;quot;IN (select childid from [sysdba].[udf_GetRecursiveChildren](&amp;#39;&amp;quot; &amp;amp; AccID &amp;amp; &amp;quot;&amp;#39;)) &amp;quot; &amp;amp; _
&amp;quot;GROUP BY Z_ACCOUNT_NL.Z_REVYEAR, Z_ACCOUNT_NL.Z_REVTYPE&amp;quot;

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/11/What-is-wrong-with-my-sql-Statement_3F00_What-is-wrong-with-my-sql-Statement_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45662" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>Migrating From SalesLogix LAN to SalesLogix Web Webcast</title><link>http://customerfx.com/pages/inbox/2012/05/11/migrating-from-saleslogix-lan-to-saleslogix-web-webcast.aspx</link><pubDate>Fri, 11 May 2012 17:52:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45666</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>Wednesday, May 16th, at 2pm CDT.

Are you currently running SalesLogix LAN and have been contemplating a move to SalesLogix Web, but don&amp;#39;t know much about the migration process?  Join us for a webcast Wednesday, May 16th, and we will review...(&lt;a href="http://customerfx.com/pages/inbox/2012/05/11/migrating-from-saleslogix-lan-to-saleslogix-web-webcast.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45666" width="1" height="1"&gt;</description></item><item><title>Jun 04, 2012 - Importing a Group of Leads - SalesLogix v7.0 and Above</title><link>http://customerfx.com/pages/events/2012/05/11/Jun-04_2C00_-2012-_2D00_-Importing-a-Group-of-Leads-_2D00_-SalesLogix-v7.0-and-Above.aspx</link><pubDate>Fri, 11 May 2012 16:53:12 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45665</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 - Importing a Group of Leads - SalesLogix v7.0 and Above!&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Event details:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Monday, June 04, 2012&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;/ul&gt;&lt;p&gt;&lt;a href="http://customerfx.com/pages/events/pages/importing-a-group-of-leads-saleslogix-v7-0-and-above.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=45665" width="1" height="1"&gt;</description></item><item><title>How do I read the data field in the SLX plugin table in order to retrieve the group layout (not only the SQL)?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/10/How-do-I-read-the-data-field-in-the-SLX-plugin-table-in-order-to-retrieve-the-group-layout-_2800_not-only-the-SQL_29003F00_.aspx</link><pubDate>Thu, 10 May 2012 21:16:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45660</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>How do I read the data field in the SLX plugin table in order to retrieve the group layout (not only the SQL)?
The purpose is to use the group layout in a vbs.

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/10/How-do-I-read-the-data-field-in-the-SLX-plugin-table-in-order-to-retrieve-the-group-layout-_2800_not-only-the-SQL_29003F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45660" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>I want call the SalesLogix Opportunity Details Main View from the OPPORTUNITYID. Is it possible?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/09/I-want-call-the-SalesLogix-Opportunity-Details-Main-View-from-the-OPPORTUNITYID.-Is-it-possible_3F00_.aspx</link><pubDate>Wed, 09 May 2012 20:54:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45657</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>I want call the Opportunity Details Main View from the OPPORTUNITYID. Is it possible?
The instruction I am using is:

Application.BasicFunction.DoInVoke &amp;quot;Main View&amp;quot;,&amp;quot;System:Opportunity Details&amp;quot;

But, this does not work.

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/09/I-want-call-the-SalesLogix-Opportunity-Details-Main-View-from-the-OPPORTUNITYID.-Is-it-possible_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45657" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>Building a Simple Solution in SalesLogix Web Workshop Video</title><link>http://customerfx.com/pages/saleslogix/2012/05/09/Building-a-Simple-Solution-in-SalesLogix-Web-Workshop-Video.aspx</link><pubDate>Wed, 09 May 2012 13:16:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45656</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>If you missed this workshop...

...You can watch the video! Learn how to build a simple project management solution without writing a line of code....(&lt;a href="http://customerfx.com/pages/saleslogix/2012/05/09/Building-a-Simple-Solution-in-SalesLogix-Web-Workshop-Video.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45656" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix/archive/tags/Sage+SalesLogix/default.aspx">Sage SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category></item><item><title>How to display picklist text and codes in the SalesLogix LAN client</title><link>http://customerfx.com/pages/integrationblog/2012/05/09/how-to-display-picklist-text-and-codes-in-the-saleslogix-lan-client.aspx</link><pubDate>Wed, 09 May 2012 11:26:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45646</guid><dc:creator>Kris Halsrud</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;A customer recently asked how to change a picklist control to display both the text and code properties when A user invokes the picklist in the SalesLogix LAN client.&amp;nbsp; There are actually two settings you should set when doing this, the second and less obvious one is the critical one.&lt;/p&gt;        &lt;p&gt;To do this you need to set the 2 properties of the picklist control in the SalesLogix Architect.&lt;/p&gt;  &lt;p&gt;By default the TextType is set to ttItem, you should be able to switch this to be ttCodeItem.&lt;/p&gt;  &lt;p&gt;You then also need to change the PopupColumns property of the picklist to match what you want. Here are the valid values:   &lt;br /&gt;1 – Display only&amp;nbsp; the Order column    &lt;br /&gt;2 - Display only the Code column    &lt;br /&gt;3 – Display both the Order and Code columns    &lt;br /&gt;4 - Display only the Item column    &lt;br /&gt;5 – Display both the Order and Item columns    &lt;br /&gt;6 – Display both the Code and Item columns    &lt;br /&gt;7 – Display all three of the columns (Order, Code and Item)    &lt;br /&gt;Any other value will not display any Column in the PickList popup&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45646" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix/default.aspx">SalesLogix</category></item><item><title>How do I make the field from the Insert Screen write to the database and display in the Detail view?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/08/How-do-I-make-the-field-from-the-Insert-Screen-write-to-the-database-and-display-in-the-Detail-view_3F00_.aspx</link><pubDate>Tue, 08 May 2012 21:15:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45652</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>We have a picklist field on the Insert Opportunity form that, when selected, is not showing in the corresponding field on Opportunity Detail. I&amp;#39;ve checked the data paths on both fields and they are pointing to the correct location. I also checked the script but couldn&amp;#39;t find anything there. How do I make the field from the Insert Screen write to the database and display in the Detail view?

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/08/How-do-I-make-the-field-from-the-Insert-Screen-write-to-the-database-and-display-in-the-Detail-view_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45652" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>How do you create seperate icons on your desktop  that can be used depending on which SalesLogix remote office they are at?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/07/How-do-you-create-seperate-icons-on-your-desktop--that-can-be-used-depending-on-which-SalesLogix-remote-office-they-are-at_3F00_.aspx</link><pubDate>Mon, 07 May 2012 20:32:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45647</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>I have users that travel between offices that are running SalesLogix remote office and would like to create seperate icons that can be used depending on which remote office they are at. Are there any parameters that can be included into the shortcut or any other way that this might be acomplished. 

We use windows authentication so the users would have to connect in slowly to the last connection used, then log out in order to change the connection manually. 

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/07/How-do-you-create-seperate-icons-on-your-desktop--that-can-be-used-depending-on-which-SalesLogix-remote-office-they-are-at_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45647" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>SalesLogix Contact Processes, Project Management, and KnowledgeSync This Wednesday</title><link>http://customerfx.com/pages/inbox/2012/05/07/saleslogix-contact-processes-project-management-and-knowledgesync-this-wednesday.aspx</link><pubDate>Mon, 07 May 2012 06:15:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45645</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>Webcast Wednesday May 9th at 2pm CDT.

Here is the schedule for this week&amp;#39;s Webcast Wednesday:...(&lt;a href="http://customerfx.com/pages/inbox/2012/05/07/saleslogix-contact-processes-project-management-and-knowledgesync-this-wednesday.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45645" width="1" height="1"&gt;</description></item><item><title>Sales Forecasting in SalesLogix Web Workshop</title><link>http://customerfx.com/pages/inbox/2012/05/07/sales-forecasting-in-saleslogix-web-workshop.aspx</link><pubDate>Mon, 07 May 2012 05:53:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45644</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>Today at 2pm CDT.

The forecasting feature of SalesLogix Web is a great tool, if you know how to use it effectively.  Join us for today&amp;#39;s workshop and become familiar with all of the options available for forecasting sales and creating a pipeline....(&lt;a href="http://customerfx.com/pages/inbox/2012/05/07/sales-forecasting-in-saleslogix-web-workshop.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45644" width="1" height="1"&gt;</description></item><item><title>How do you customize deletion options for a SalesLogix custom entity?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/04/How-do-you-customize-deletion-options-for-a-SalesLogix-custom-entity_3F00_.aspx</link><pubDate>Fri, 04 May 2012 19:51:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45640</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>I&amp;#39;ve created a new entity, lets say its called Invoice. So, I have an Invoice MainView, DetailsView, etc. I need to change the edit menu functionality for this entity. Deletion should be allowed only for certain users, and the system should display a confirm dialog prior to beginning the deletion routine. 

I&amp;#39;ve been taking a look at global functions, but I&amp;#39;m not sure if this is the way to go or not.

How do I do this? ...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/04/How-do-you-customize-deletion-options-for-a-SalesLogix-custom-entity_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45640" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>How do you open a Crystal Report in SalesLogix using a button?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/03/How-do-you-open-a-Crystal-Report-in-SalesLogix-using-a-button_3F00_.aspx</link><pubDate>Thu, 03 May 2012 19:43:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45639</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>I have a report which takes ages to run
I therefore can&amp;#39;t open it via the application.basicfunctions.doinvoke ... routine as this always refreshes the data, even if the &amp;quot;save data with report&amp;quot; option is ticked

I have the report running overnight via Knowledgesync and saving to a path on the server
I want to click a button in slx and open this file - with the data saved

I have the following code:

dim objrdc, crxreport, crxview, rptwindow
Set objRDC = CreateObject(&amp;quot;Crystalruntime.Application&amp;quot;)
Set CRXReport = objRDC.OpenReport(&amp;quot;filename.rpt&amp;quot;)


What is the next command to open the report in Crystal Report Viewer?
If I put 
crxreport.printout 
it tries to print to a printer - I don&amp;#39;t want this but at least I know the text above is ok

I&amp;#39;ve tried 
crxreport.preview
and this errors 

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/03/How-do-you-open-a-Crystal-Report-in-SalesLogix-using-a-button_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45639" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>Step by step guide to creating an Account filter on RegionalManagerID in the 7.5.4 SalesLogix Web client</title><link>http://customerfx.com/pages/integrationblog/2012/05/03/step-by-step-guide-to-creating-an-account-filter-on-regionalmanagerid-in-the-7-5-4-saleslogix-web-client.aspx</link><pubDate>Thu, 03 May 2012 11:25:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45637</guid><dc:creator>Kris Halsrud</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;The SalesLogix web client there is a standard account filter for Account Manager that allows you to filter groups on specific Account Managers.&amp;nbsp; You would think that adding a filter for Regional Manager would be as simple as mimicking the Account Manager filter- well, you would be wrong.&lt;/p&gt;    &lt;p&gt;Due to some bugginess of the filter area you have to do some rigmarole to get this to work.&amp;nbsp; here are the exact steps to follow. (note these steps are for 7.5.4 with HF 1-4).&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;Properly Building the Filter&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;Log into the Application Architect as Admin&lt;/p&gt;    &lt;p&gt;In the Project Explorer (Press Cntrl+Alt+E to open) browse to VFS…Entity Model…SalesLogix Application Entities…Account…Filters.&lt;/p&gt;    &lt;p&gt;Right click on the Filters folder and choose New Filter.&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-adding-entity-filter-step-1_622D9D54.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-adding-entity-filter-step-1_thumb_68E0A6D7.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix adding entity filter step 1" alt="SalesLogix adding entity filter step 1" border="0" height="355" width="371" /&gt;&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Press F4 to ensure the Properties window is open (more on that later).&lt;/p&gt;      &lt;p&gt;You should now see a screen like this:&lt;/p&gt;      &lt;p&gt;&lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-blank_48C59A1A.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-blank_thumb_0FAEBD18.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix new entity filter blank" alt="SalesLogix new entity filter blank" border="0" height="145" width="644" /&gt;&lt;/a&gt;&lt;/p&gt;      &lt;p&gt;You will notice a red asterisk.&amp;nbsp; This is Sage’s way of telling you something is important!&amp;nbsp; You need to define the Property in order to save your filter.&amp;nbsp; The Property is the Entity Property you want to filter on.&amp;nbsp; If you look at the AccountManager filter that is there OOTB the Property to filter is AccountManager which is actually the entity collection object referencing the User object.&amp;nbsp; So guess what you want to put in our filter for the Regional Manager?&lt;/p&gt;            &lt;p&gt;If you said the RegionalManager collection object- good try but wrong.&amp;nbsp; What we actually need to select here is RegionalManager.UserInfo.UserName.&lt;/p&gt;            &lt;p&gt;Well that is obvious?&lt;/p&gt;            &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;OK, next we need to name our filter in the Filter Name.&amp;nbsp; I am just going to call it RegMgr.&amp;nbsp; In the Display Name I will enter Reg Mgr.&amp;nbsp; Now your screen should look like this:&lt;/p&gt;        &lt;p&gt;&lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-filled-in_5697E015.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-filled-in_thumb_1D810313.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix new entity filter filled in" alt="SalesLogix new entity filter filled in" border="0" height="174" width="644" /&gt;&lt;/a&gt;&lt;/p&gt;        &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now take a look at the property window you opened earlier.&amp;nbsp; Notice the Datapath value?&lt;/p&gt;          &lt;p&gt;&lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-properties-bad_218B50E5.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-properties-bad_thumb_687473E2.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix new entity filter properties bad" alt="SalesLogix new entity filter properties bad" border="0" height="207" width="644" /&gt;&lt;/a&gt;&lt;/p&gt;          &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;That is a bad thing.&amp;nbsp; Having this value in here causes all kinds of troubles, including the filters not rendering properly in the web client as well as the wire client script that runs when the filter is applied being malformed and non-functional.&amp;nbsp; Did I mention it was bad?&amp;nbsp; Thing is, any custom filters added to the system get this DataPath property set.&amp;nbsp; Worse you can not remove the property from here.&amp;nbsp; But there is a way!&lt;/p&gt;            &lt;p&gt;Here is how you go about clearing out the bad Datapath:&lt;/p&gt;            &lt;li&gt;In Application Architect go to View...Virtual File System Explorer. &lt;/li&gt;            &lt;li&gt;In the Virtual File System Explorer expand out the following path: Model...Entity Model...SalesLogix Application Entities...Account &lt;i&gt;(Or whatever entity has the filter)&lt;/i&gt;You should then see an XML file formatted as &amp;quot;Filtername&amp;quot;.Filter.xml. &lt;/li&gt;            &lt;p&gt;&lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-browsing-the-VFS_2F5D96E0.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-browsing-the-VFS_thumb_3D2FDCDB.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix new entity filter browsing the VFS" alt="SalesLogix new entity filter browsing the VFS" border="0" height="484" width="207" /&gt;&lt;/a&gt;&lt;/p&gt;            &lt;li&gt;Double Click the XML filter File&lt;i&gt;.&lt;/i&gt;&lt;/li&gt;            &lt;li&gt;In the XML file you will see a property like dataPath=&amp;quot;ACCOUNT:CUSTOMFIELDTEST&amp;quot; &lt;/li&gt;            &lt;li&gt;&lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-modifying-the-VFS-filter_08234DAB.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-new-entity-filter-modifying-the-VFS-filter_thumb_7CF9C360.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix new entity filter modifying the VFS filter" alt="SalesLogix new entity filter modifying the VFS filter" border="0" height="98" width="644" /&gt;&lt;/a&gt;&lt;/li&gt;            &lt;li&gt;Remove this property. &lt;/li&gt;            &lt;li&gt;Save your changes to the XML file. &lt;/li&gt;                        &lt;li&gt;After you have removed the datapath property through the VFS for the filters you need, do a full re-build and re-deploy. &lt;/li&gt;            &lt;li&gt;Close the Application Architect.&lt;/li&gt;            &lt;li&gt;Run an IISReset.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&lt;/li&gt;            &lt;p&gt;&lt;u&gt;Properly formatting groups&lt;/u&gt;                            &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;OK, so now we have a filter properly built from within the Application Architect and have deployed.&amp;nbsp; In order to make the filter show in the web client it the property of the filter needs to exist as a column in the current group.&amp;nbsp; You will notice that as you switch groups in the web client the list of filters available changes.&lt;/p&gt;                &lt;p&gt;Again if we think that we can look at an Account group that has the Account Manager filter available and working and just copy its behavior you’d be wrong.&amp;nbsp; here is what you have to do:&lt;/p&gt;                                &lt;p&gt;In the Web client, add or edit a group.&lt;/p&gt;                &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Click the layout tab.&lt;/p&gt;                 &lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-Regional-Manager-Added-to-Group-Layout-Step-1_01041133.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-Regional-Manager-Added-to-Group-Layout-Step-1_thumb_75DA86E8.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix Regional Manager Added to Group Layout Step 1" alt="SalesLogix Regional Manager Added to Group Layout Step 1" border="0" height="484" width="532" /&gt;&lt;/a&gt;                  &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now you might be inclined to add the Account.RegionalManagerID field to the layout and set the format type to “User Name”.&amp;nbsp; While this would certainly show you the data in the group it will not allow the filter to display.&amp;nbsp; Why?&amp;nbsp; Because the filter is based really on UserInfo.UserName.&amp;nbsp; So what we need to do is pull that field.&amp;nbsp; There should be a global join in the system from RegionalManagerID to the UserInfo table’s UserId.&amp;nbsp; In the upper left box scroll down until you see the table shown here:&lt;/p&gt;                    &lt;p&gt;&lt;a href="http://customerfx.com/blogs/integrationblog/SalesLogix-Regional-Manager-Added-to-Group-Layout-Step-2_55BF7A2B.png"&gt;&lt;img src="http://customerfx.com/blogs/integrationblog/SalesLogix-Regional-Manager-Added-to-Group-Layout-Step-2_thumb_07B71AB6.png" style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="SalesLogix Regional Manager Added to Group Layout Step 2" alt="SalesLogix Regional Manager Added to Group Layout Step 2" border="0" height="484" width="536" /&gt;&lt;/a&gt;&lt;/p&gt;                    &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now in the right box, find the UserName field shown highlighted above and add that to the layout.&amp;nbsp; You will probably want to change the Column heading to say something like “Regional Mgr”.&lt;/p&gt; Now Click OK to Save your changes to the Group.You should now see your Regional Manager filter listed and be able to use it!!!!                                         &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45637" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix+7.5.4/default.aspx">SalesLogix 7.5.4</category><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category></item><item><title>How do I find the Picklistid for any given picklist?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/02/How-do-I-find-the-Picklistid-for-any-given-picklist_3F00_.aspx</link><pubDate>Wed, 02 May 2012 20:15:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45635</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>I see that the PICKLIST table has all the items for the picklists. I also see that there is a PICKLISTID that says what items go with that picklist. But how do I find out what PICKLISTID matches up with (for example) the Contact Status picklist?

And I need to do this programmatically.

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/02/How-do-I-find-the-Picklistid-for-any-given-picklist_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45635" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>How do you customization the Create Oppportunity Function when converting a lead?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/05/01/How-do-you-customization-the-Create-Oppportunity-Function-when-converting-a-lead_3F00_.aspx</link><pubDate>Tue, 01 May 2012 21:02:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45633</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>When converting a Lead to an Account there is an option to create an Opportunity as well. The problem we&amp;#39;re having is that none of the information from the Lead is being set in the Opportunity(mainly the LeadSource) even though the fields are in both the Lead and the Opportunity.

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/05/01/How-do-you-customization-the-Create-Oppportunity-Function-when-converting-a-lead_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45633" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>A realy cool nugget- How to show and hide tabs dynamically in the SalesLogix Web Client</title><link>http://customerfx.com/pages/integrationblog/2012/05/01/a-realy-cool-nugget-how-to-show-and-hide-tabs-dynamically-in-the-saleslogix-web-client.aspx</link><pubDate>Tue, 01 May 2012 17:28:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45632</guid><dc:creator>Kris Halsrud</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;In the SalesLogix LAN client and web client one of the most requested thing I am asked is how do you hide tabs at run time.&lt;/p&gt;    &lt;p&gt;In the web client this is actually really easy.&amp;nbsp; You can wire this up on a load action of a quick form like so:&lt;/p&gt;        &lt;blockquote&gt;&lt;p&gt;&lt;font color="#0000ff"&gt;Sage.Entity.Interfaces.ISalesOrder salesorder = this.BindingSource.Current as Sage.Entity.Interfaces.ISalesOrder;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color="#0000ff"&gt;Sage.Platform.WebPortal.Workspaces.Tab.TabWorkspace tabs = this.ParentWorkItem.Workspaces[&amp;quot;TabControl&amp;quot;] as Sage.Platform.WebPortal.Workspaces.Tab.TabWorkspace;&lt;br /&gt;tabs.Hide(&amp;quot;SalesOrderChangeOrders&amp;quot;, (salesOrder.OrderType==&amp;quot;Change Order&amp;quot;));&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;      &lt;p&gt;The key here is once you get a reference to the tabs workspace, you can call the Hide method which then accepts two parameters, the Smart Part ID to show or hide, and a Boolean parameter.&amp;nbsp; The second Boolean parameter is set to True to hide and False to not hide. Note, that since this code runs after the tabs are actually loaded onto the page, the tab you are showing or hiding needs to be present as a loaded smart part.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45632" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/integrationblog/archive/tags/SalesLogix+Web/default.aspx">SalesLogix Web</category></item><item><title>What is the purpose for .slp files in SalesLogix?</title><link>http://customerfx.com/pages/saleslogix-answers/2012/04/30/What-is-the-purpose-for-.slp-files-in-SalesLogix_3F00_.aspx</link><pubDate>Mon, 30 Apr 2012 20:15:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45629</guid><dc:creator>SalesLogix Support</dc:creator><slash:comments>0</slash:comments><description>Trying to get a better understanding of the .SLP files and what they are used for. Can anyone give me some information on what they are used for and generally what role they play within SalesLogix?

 

...(&lt;a href="http://customerfx.com/pages/saleslogix-answers/2012/04/30/What-is-the-purpose-for-.slp-files-in-SalesLogix_3F00_.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45629" width="1" height="1"&gt;</description><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix/default.aspx">SalesLogix</category><category domain="http://customerfx.com/pages/saleslogix-answers/archive/tags/SalesLogix+Support/default.aspx">SalesLogix Support</category></item><item><title>This Coming Week on Webcast Wednesday...</title><link>http://customerfx.com/pages/inbox/2012/04/30/this-coming-week-on-webcast-wednesday.aspx</link><pubDate>Mon, 30 Apr 2012 05:32:00 GMT</pubDate><guid isPermaLink="false">e15581aa-2787-4c59-a940-524c09f5d256:45626</guid><dc:creator>Brianna Tinjum</dc:creator><slash:comments>0</slash:comments><description>Customized Solution, Asset Tracking, e-Marketing.

Join us May 2nd starting at 1pm CDT for Wedcast Wednesday!  This weeks topics will include:...(&lt;a href="http://customerfx.com/pages/inbox/2012/04/30/this-coming-week-on-webcast-wednesday.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://customerfx.com/aggbug.aspx?PostID=45626" width="1" height="1"&gt;</description></item></channel></rss>
