<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.inetium.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>Jeremy Winchell - All Comments</title><link>http://blogs.inetium.com/blogs/microsoftcrm/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2008 (Build: 30417.1769)</generator><item><title>Hiding and Changing Left Navigation Items in CRM 4.0 Entity Screens &amp;laquo; Sivavadavalli&amp;#8217;s Weblog</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2007/06/25/navigation-hiding-unwanted-options-in-crm.aspx#18704</link><pubDate>Mon, 17 Nov 2008 18:36:28 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18704</guid><dc:creator>Hiding and Changing Left Navigation Items in CRM 4.0 Entity Screens « Sivavadavalli’s Weblog</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Hiding and Changing Left Navigation Items in CRM 4.0 Entity Screens &amp;laquo; Sivavadavalli&amp;#8217;s Weblog&lt;/p&gt;
&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18704" width="1" height="1"&gt;</description></item><item><title>re: Embedding a Direct Link In An E-Mail - CRM 4.0 Version</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/09/21/embedding-a-direct-link-in-an-e-mail-crm-4-0-version2.aspx#18648</link><pubDate>Fri, 14 Nov 2008 01:04:37 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18648</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;JokiJani,&lt;/p&gt;
&lt;p&gt;In the generate GUID method you can check to see what the entity type is. &amp;nbsp;Once you do that if it&amp;#39;s an email, phonecall, appointment, campaignresponse etc., you can change the code to use &amp;quot;activityid&amp;quot; as the property name instead of &amp;lt;entityname&amp;gt; + &amp;quot;id&amp;quot;. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can do the same kind of check in the BuildURL function as well. &lt;/p&gt;
&lt;p&gt;Nice find.&lt;/p&gt;
&lt;p&gt;- Jeremy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18648" width="1" height="1"&gt;</description></item><item><title>re: Embedding a Direct Link In An E-Mail - CRM 4.0 Version</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/09/21/embedding-a-direct-link-in-an-e-mail-crm-4-0-version2.aspx#18640</link><pubDate>Thu, 13 Nov 2008 12:42:13 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18640</guid><dc:creator>JokiJani</dc:creator><description>&lt;p&gt;I solved the problem with activity entities. Problem is here:&lt;/p&gt;
&lt;p&gt;1. GenerateGuid -method.&lt;/p&gt;
&lt;p&gt;Your code:&lt;/p&gt;
&lt;p&gt;KeyProperty _keyprop = new KeyProperty(_dentity.Name + &amp;quot;id&amp;quot;,_incidentkey);&lt;/p&gt;
&lt;p&gt;- Above is not working with emails (or other activities) because it generates KeyProperty named emailid. In emails (and other activities) KeyProperty shoud be activityid. I just hardcoded it as shown below, but some dynamic system need to be build in future.&lt;/p&gt;
&lt;p&gt;My code:&lt;/p&gt;
&lt;p&gt;KeyProperty _keyprop = new KeyProperty(&amp;quot;activityid&amp;quot;, _incidentkey);&lt;/p&gt;
&lt;p&gt;2. Same thing must be changed in BuildURL -method.&lt;/p&gt;
&lt;p&gt;Your code:&lt;/p&gt;
&lt;p&gt;Key _keyproperty = (Key)_dentity[_dentity.Name + &amp;quot;id&amp;quot;];&lt;/p&gt;
&lt;p&gt;My code:&lt;/p&gt;
&lt;p&gt;Key _keyproperty = (Key)_dentity[&amp;quot;activityid&amp;quot;];&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18640" width="1" height="1"&gt;</description></item><item><title>re: Embedding a Direct Link In An E-Mail - CRM 4.0 Version</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/09/21/embedding-a-direct-link-in-an-e-mail-crm-4-0-version2.aspx#18627</link><pubDate>Wed, 12 Nov 2008 10:09:50 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18627</guid><dc:creator>JokiJani</dc:creator><description>&lt;p&gt;I got this working with Contact entity. Thank You for that. But I also have problem with activity entities. I tryed with emails. When I create a new Email activity, the Url Link is formed well, but saving email fails with &amp;quot;No attribute&amp;quot; error. So the Plug-in works fine but somehow Activity entities works differently than Contacts. Any ideas for that?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18627" width="1" height="1"&gt;</description></item><item><title>re: Embedding Direct Links To CRM In A Workflow Email - Take 2</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/06/17/embedding-direct-links-to-crm-in-a-workflow-email-take-2.aspx#18620</link><pubDate>Tue, 11 Nov 2008 23:18:47 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18620</guid><dc:creator>HairyMan</dc:creator><description>&lt;p&gt;Not bad... Not bad.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18620" width="1" height="1"&gt;</description></item><item><title>re: Embedding Direct Links To CRM In A Workflow Email - Take 2</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/06/17/embedding-direct-links-to-crm-in-a-workflow-email-take-2.aspx#18613</link><pubDate>Tue, 11 Nov 2008 17:28:10 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18613</guid><dc:creator>YahooBot</dc:creator><description>&lt;p&gt;Nice site, thanks for information!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18613" width="1" height="1"&gt;</description></item><item><title>re: Embedding a Direct Link In An E-Mail - CRM 4.0 Version</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/09/21/embedding-a-direct-link-in-an-e-mail-crm-4-0-version2.aspx#18573</link><pubDate>Thu, 06 Nov 2008 06:00:47 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18573</guid><dc:creator>Kyle</dc:creator><description>&lt;p&gt;Any luck? I will try it again later this week to see if I can get it going with activities.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18573" width="1" height="1"&gt;</description></item><item><title>re: Hiding Unwanted Navigation In CRM</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2007/06/25/navigation-hiding-unwanted-options-in-crm.aspx#18523</link><pubDate>Thu, 23 Oct 2008 00:29:36 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18523</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;Dodd,&lt;/p&gt;
&lt;p&gt;You can hide the entry from the NavBar on the left. &amp;nbsp;You will want to open the page in a normal IE window so you can view the source. &amp;nbsp;Once the source code is open search for the label of your entity. &amp;nbsp;From there you should be able to find the ID of that item.&lt;/p&gt;
&lt;p&gt;Then you can use:&lt;/p&gt;
&lt;p&gt;document.getElementById(&amp;quot;&amp;lt;name&amp;gt;&amp;quot;).style.display = &amp;quot;none&amp;quot;;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Jeremy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18523" width="1" height="1"&gt;</description></item><item><title>re: Hiding Unwanted Navigation In CRM</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2007/06/25/navigation-hiding-unwanted-options-in-crm.aspx#18520</link><pubDate>Thu, 23 Oct 2008 00:29:27 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18520</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;Dodd,&lt;/p&gt;
&lt;p&gt;You can hide the entry from the NavBar on the left. &amp;nbsp;You will want to open the page in a normal IE window so you can view the source. &amp;nbsp;Once the source code is open search for the label of your entity. &amp;nbsp;From there you should be able to find the ID of that item.&lt;/p&gt;
&lt;p&gt;Then you can use:&lt;/p&gt;
&lt;p&gt;document.getElementById(&amp;quot;&amp;lt;name&amp;gt;&amp;quot;).style.display = &amp;quot;none&amp;quot;;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18520" width="1" height="1"&gt;</description></item><item><title>re: Hiding Unwanted Navigation In CRM</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2007/06/25/navigation-hiding-unwanted-options-in-crm.aspx#18519</link><pubDate>Thu, 23 Oct 2008 00:27:53 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18519</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;Ano,&lt;/p&gt;
&lt;p&gt;I posted a blog post a few weeks ago about how you can hide the Add Existing button from within a CRM Grid. &amp;nbsp;You can find it using the link below:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/09/22/hiding-the-add-existing-button-in-a-crm-4-0-grid.aspx"&gt;blogs.inetium.com/.../hiding-the-add-existing-button-in-a-crm-4-0-grid.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Jeremy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18519" width="1" height="1"&gt;</description></item><item><title>re: Field Level Security With CRM 3.0 - Part I</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2007/08/03/field-level-security-with-crm-3-0.aspx#18518</link><pubDate>Thu, 23 Oct 2008 00:26:09 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18518</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;Ronald,&lt;/p&gt;
&lt;p&gt;Thanks for the post. &amp;nbsp;We have been able to sort of create a work-around calling the SDK with JavaScript to get the list of roles. &amp;nbsp;It&amp;#39;s not as fast or efficient as the CRM 3.0 version of field level security but it seems to do the trick ok.&lt;/p&gt;
&lt;p&gt;I didn&amp;#39;t know about the PreRead Plug-In message. &amp;nbsp;I will have to look into that one as I have some uses for it right now. &amp;nbsp;Plus, it can be used instead of dealing with the JavaSCript and the SDK.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Jeremy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18518" width="1" height="1"&gt;</description></item><item><title>re: Locking Down Lookup Fields</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2007/10/02/locking-down-lookup-fields.aspx#18517</link><pubDate>Thu, 23 Oct 2008 00:23:02 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18517</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;jmd30094,&lt;/p&gt;
&lt;p&gt;In order to do that you would have implement a type of Lookup Filtering code, which is unsupported in CRM. &amp;nbsp;However, if you do go that route you can use the FetchXML syntax to further limit the records that can or can&amp;#39;t be selected when using the Lookup.&lt;/p&gt;
&lt;p&gt;Jeremy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18517" width="1" height="1"&gt;</description></item><item><title>re: Exporting more than 10,000 records to Excel in CRM 3.0/CRM 4.0</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/06/18/exporting-more-than-10-000-records-to-excel-in-crm-3-0-4-0.aspx#18516</link><pubDate>Thu, 23 Oct 2008 00:21:21 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18516</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;Ah, yes thanks for that reminder Craig. &amp;nbsp;I will be sure to put that in the post.&lt;/p&gt;
&lt;p&gt;Jeremy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18516" width="1" height="1"&gt;</description></item><item><title>re: Embedding a Direct Link In An E-Mail - CRM 4.0 Version</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/09/21/embedding-a-direct-link-in-an-e-mail-crm-4-0-version2.aspx#18515</link><pubDate>Thu, 23 Oct 2008 00:20:52 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18515</guid><dc:creator>Jeremy Winchell</dc:creator><description>&lt;p&gt;Kyle,&lt;/p&gt;
&lt;p&gt;I wasn&amp;#39;t getting notified of new comments so I didn&amp;#39;t see your posts until tonight. &amp;nbsp;It should work with activity entities as well, it may just be a matter of getting the correct format of the URL.&lt;/p&gt;
&lt;p&gt;I will look into it.&lt;/p&gt;
&lt;p&gt;Jeremy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18515" width="1" height="1"&gt;</description></item><item><title>re: Embedding a Direct Link In An E-Mail - CRM 4.0 Version</title><link>http://blogs.inetium.com/blogs/microsoftcrm/archive/2008/09/21/embedding-a-direct-link-in-an-e-mail-crm-4-0-version2.aspx#18512</link><pubDate>Tue, 21 Oct 2008 04:42:20 GMT</pubDate><guid isPermaLink="false">7346ef18-9fb1-4a4e-be41-9add5078176c:18512</guid><dc:creator>Kyle</dc:creator><description>&lt;p&gt;Any idea if this works with activity entities (such as tasks, emails, etc...) I tried but wasn&amp;#39;t successful - I might just have made a stupid mistake though.&lt;/p&gt;
&lt;p&gt;Thoughts?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.inetium.com/aggbug.aspx?PostID=18512" width="1" height="1"&gt;</description></item></channel></rss>