<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Richard Knudson&#039;s Dynamics CRM Trick Bag</title>
	<atom:link href="http://www.dynamicscrmtrickbag.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dynamicscrmtrickbag.com</link>
	<description>Building business value on Dynamics CRM</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:09:05 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Inside View: The Ultimate CRM Mashup? by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2009/05/08/inside-view/comment-page-1/#comment-6230</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 13:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/?p=1010#comment-6230</guid>
		<description>Great -- thanks for reading! let me know if there are any article categories you&#039;re interested in. I&#039;m always looking for content ideas.

Richard</description>
		<content:encoded><![CDATA[<p>Great &#8212; thanks for reading! let me know if there are any article categories you&#8217;re interested in. I&#8217;m always looking for content ideas.</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Responsive Auto-Responders with Web2CRM and CRM Workflows by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2009/04/23/auto-responders/comment-page-1/#comment-6229</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 13:08:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/?p=788#comment-6229</guid>
		<description>Hi Daniel,

Basically, you could take one of two approaches: write an asp.net application, or use an add-on solution. My favorite is ClickDimensions. It&#039;s a comprehensive marketing automation add-on and does a lot more than surveys, but it does a great job with surveys. Here&#039;s an article about it with a link to a recorded session I just did with the ClickDimensions folks: http://www.dynamicscrmtrickbag.com/2012/01/26/crm-mvps-on-marketing-automation-best-practices/ -- one of my case studies was on doing surveys with the tool.

Thanks for reading!

Richard</description>
		<content:encoded><![CDATA[<p>Hi Daniel,</p>
<p>Basically, you could take one of two approaches: write an asp.net application, or use an add-on solution. My favorite is ClickDimensions. It&#8217;s a comprehensive marketing automation add-on and does a lot more than surveys, but it does a great job with surveys. Here&#8217;s an article about it with a link to a recorded session I just did with the ClickDimensions folks: <a href="http://www.dynamicscrmtrickbag.com/2012/01/26/crm-mvps-on-marketing-automation-best-practices/" rel="nofollow">http://www.dynamicscrmtrickbag.com/2012/01/26/crm-mvps-on-marketing-automation-best-practices/</a> &#8212; one of my case studies was on doing surveys with the tool.</p>
<p>Thanks for reading!</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connections and Workflows in Dynamics CRM 2011 by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2011/05/01/connections-and-workflows-in-dynamics-crm-2011/comment-page-1/#comment-6228</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 13:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/2011/05/01/connections-and-workflows-in-dynamics-crm-2011/#comment-6228</guid>
		<description>Hi Juan,

It depends on how you do it. Here are three options:
1. You could certainly do it with JScript triggered by a form event. Here&#039;s an article I wrote once on date arithmetic in Jscript: http://www.dynamicscrmtrickbag.com/2010/06/15/useful-form-scripts-4/ -- it&#039;s for 4.0 but the date-specific stuff is the same. The problem with JScript is that it requires the form to be loaded.
 
2. You might be able to use a workflow to do it. For example, in the workflow designer on an update record step, you can put the cursor in a date field and use dynamic values to set it equal to &quot;1 month after [execution time]&quot;. The nice thing about workflows is that provided you&#039;ve got the trigger set right, they don&#039;t need the form to be open to run. The down side of workflows is they&#039;re asynchronous, so users don&#039;t see the results for as much as 20-30 seconds. 

3. If you need it to happen no matter what, and want a user to esee results immediately, then you could write a plugin. 

Let me know which approach you take, and thanks for reading.

Richard</description>
		<content:encoded><![CDATA[<p>Hi Juan,</p>
<p>It depends on how you do it. Here are three options:<br />
1. You could certainly do it with JScript triggered by a form event. Here&#8217;s an article I wrote once on date arithmetic in Jscript: <a href="http://www.dynamicscrmtrickbag.com/2010/06/15/useful-form-scripts-4/" rel="nofollow">http://www.dynamicscrmtrickbag.com/2010/06/15/useful-form-scripts-4/</a> &#8212; it&#8217;s for 4.0 but the date-specific stuff is the same. The problem with JScript is that it requires the form to be loaded.</p>
<p>2. You might be able to use a workflow to do it. For example, in the workflow designer on an update record step, you can put the cursor in a date field and use dynamic values to set it equal to &#8220;1 month after [execution time]&#8220;. The nice thing about workflows is that provided you&#8217;ve got the trigger set right, they don&#8217;t need the form to be open to run. The down side of workflows is they&#8217;re asynchronous, so users don&#8217;t see the results for as much as 20-30 seconds. </p>
<p>3. If you need it to happen no matter what, and want a user to esee results immediately, then you could write a plugin. </p>
<p>Let me know which approach you take, and thanks for reading.</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamics CRM 2011 Solutions, Part 1 by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2011/05/28/dynamics-crm-2011-solutions-part-1/comment-page-1/#comment-6227</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 12:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/2011/05/28/dynamics-crm-2011-solutions-part-1/#comment-6227</guid>
		<description>Hi Bob,

If I understand your question correctly, the answer is yes. When you export a solution, it will always contain the currently published version of any entities it contains. That &quot;Publish all customizations&quot; option you get when you export is your failsafe option, but if everything is published you don&#039;t need to do it every time you export.

Cheers, Richard</description>
		<content:encoded><![CDATA[<p>Hi Bob,</p>
<p>If I understand your question correctly, the answer is yes. When you export a solution, it will always contain the currently published version of any entities it contains. That &#8220;Publish all customizations&#8221; option you get when you export is your failsafe option, but if everything is published you don&#8217;t need to do it every time you export.</p>
<p>Cheers, Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Migrating from CRM 4.0 to Dynamics CRM 2011 by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2011/04/08/migrating-from-crm-4-0-to-dynamics-crm-2011/comment-page-1/#comment-6226</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 12:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/2011/04/08/migrating-from-crm-4-0-to-dynamics-crm-2011/#comment-6226</guid>
		<description>Thanks Timothy!

Richard</description>
		<content:encoded><![CDATA[<p>Thanks Timothy!</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Assigning and Sharing Records; Users, Teams (and Queues!) by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2009/12/11/assigning-sharing/comment-page-1/#comment-6225</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 12:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/2009/12/11/assigning-and-sharing-records-users-teams-and-queues/#comment-6225</guid>
		<description>Yes, there&#039;s a Reassign Records command available from the ribbon on the user form. Let me know how it works for you, and thanks for reading!

Richard</description>
		<content:encoded><![CDATA[<p>Yes, there&#8217;s a Reassign Records command available from the ribbon on the user form. Let me know how it works for you, and thanks for reading!</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Workflows to Calculate Field Values by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2009/04/26/calculatedfields_wf/comment-page-1/#comment-6224</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 12:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/?p=852#comment-6224</guid>
		<description>Yes, I was just about to say that. :-) Thanks for the link to that article -- very helpful. And thanks for reading!

Richard</description>
		<content:encoded><![CDATA[<p>Yes, I was just about to say that. <img src='http://www.dynamicscrmtrickbag.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Thanks for the link to that article &#8212; very helpful. And thanks for reading!</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding Waits and Timeouts in Dynamics CRM Workflows by Richard Knudson</title>
		<link>http://www.dynamicscrmtrickbag.com/2009/07/12/waits-timeouts/comment-page-1/#comment-6223</link>
		<dc:creator>Richard Knudson</dc:creator>
		<pubDate>Fri, 27 Jan 2012 12:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/2009/07/12/understanding-waits-and-timeouts-in-dynamics-crm-workflows/#comment-6223</guid>
		<description>Hi Nathan,
What does your workflow do? I&#039;m not familiar with a timeout limitation. Is it a recursive workflow? There is a limit on how many times a workflow can recurse, but even that depends on how quickly it recurses. If you describe your scenario in more detail I might be able to help.

Richard</description>
		<content:encoded><![CDATA[<p>Hi Nathan,<br />
What does your workflow do? I&#8217;m not familiar with a timeout limitation. Is it a recursive workflow? There is a limit on how many times a workflow can recurse, but even that depends on how quickly it recurses. If you describe your scenario in more detail I might be able to help.</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marketing Automation in Dynamics CRM by CRM MVPs on Marketing Automation Best Practices - Richard Knudson’s Microsoft Dynamics CRM Trick Bag - CRM Technical Blogs - Microsoft Dynamics Community</title>
		<link>http://www.dynamicscrmtrickbag.com/2011/12/03/marketing-automation-in-dynamics-crm/comment-page-1/#comment-6221</link>
		<dc:creator>CRM MVPs on Marketing Automation Best Practices - Richard Knudson’s Microsoft Dynamics CRM Trick Bag - CRM Technical Blogs - Microsoft Dynamics Community</dc:creator>
		<pubDate>Fri, 27 Jan 2012 04:13:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/2011/12/03/marketing-automation-in-dynamics-crm/#comment-6221</guid>
		<description>[...] recently wrote an overview piece on using the ClickDimensions marketing automation solution in Dynamics CRM, and in this article I&#8217;ll summarize the two slightly more detailed scenarios I discussed in [...]</description>
		<content:encoded><![CDATA[<p>[...] recently wrote an overview piece on using the ClickDimensions marketing automation solution in Dynamics CRM, and in this article I&#8217;ll summarize the two slightly more detailed scenarios I discussed in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marketing Automation in Dynamics CRM by CRM MVPs on Marketing Automation Best Practices</title>
		<link>http://www.dynamicscrmtrickbag.com/2011/12/03/marketing-automation-in-dynamics-crm/comment-page-1/#comment-6220</link>
		<dc:creator>CRM MVPs on Marketing Automation Best Practices</dc:creator>
		<pubDate>Fri, 27 Jan 2012 03:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.dynamicscrmtrickbag.com/2011/12/03/marketing-automation-in-dynamics-crm/#comment-6220</guid>
		<description>[...] recently wrote an overview piece on using the ClickDimensions marketing automation solution in Dynamics CRM, and in this article I&#8217;ll summarize the two slightly more detailed scenarios I discussed in [...]</description>
		<content:encoded><![CDATA[<p>[...] recently wrote an overview piece on using the ClickDimensions marketing automation solution in Dynamics CRM, and in this article I&#8217;ll summarize the two slightly more detailed scenarios I discussed in [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

