<?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 on: Easily integrate Twitter search results about your clients in Microsoft CRM</title>
	<atom:link href="http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/feed/" rel="self" type="application/rss+xml" />
	<link>http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/</link>
	<description>Big stylin' with Microsoft Dynamics CRM!  Tips for administrators, salespeople and general CRM users.</description>
	<lastBuildDate>Thu, 10 May 2012 18:59:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Paul Martin</title>
		<link>http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/comment-page-1/#comment-92</link>
		<dc:creator>Paul Martin</dc:creator>
		<pubDate>Fri, 29 May 2009 20:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://crmdynamo.com/?p=349#comment-92</guid>
		<description>We like to know what our customers are twittering so I added twitter search to the contact form by
 
1) adding a new attribute for twitteraccount 
2) add the field to the form
3) add this code to the onchange of the twitteraccount field:
// Get the field that fired the event.
var oField = event.srcElement;

// Validate the field information.
if (typeof(oField) != &quot;undefined&quot; &amp;&amp; oField != null &amp;&amp; oField.DataValue != null) 
{
// Remove any left @
var sTmp = oField.DataValue.replace(/@/g,&quot;&quot;)

 oField.DataValue = sTmp
}

//load twitter search
var CRM_FORM_TYPE_CREATE = 1;
var CRM_FORM_TYPE_UPDATE = 2;
switch (crmForm.FormType)
{
case CRM_FORM_TYPE_UPDATE:
crmForm.all.IFRAME_TwitterSearch.src=&quot;http://search.twitter.com/search?q=@&quot; + crmForm.all.adm_twitteraccount.DataValue;
break;
}
4) add this code to the form onload:
//load twitter search
var CRM_FORM_TYPE_CREATE = 1;
var CRM_FORM_TYPE_UPDATE = 2;
switch (crmForm.FormType)
{
case CRM_FORM_TYPE_UPDATE:
crmForm.all.IFRAME_TwitterSearch.src=&quot;http://search.twitter.com/search?q=@&quot; + crmForm.all.adm_twitteraccount.DataValue;
break;
}
5) save
6) publish</description>
		<content:encoded><![CDATA[<p>We like to know what our customers are twittering so I added twitter search to the contact form by</p>
<p>1) adding a new attribute for twitteraccount<br />
2) add the field to the form<br />
3) add this code to the onchange of the twitteraccount field:<br />
// Get the field that fired the event.<br />
var oField = event.srcElement;</p>
<p>// Validate the field information.<br />
if (typeof(oField) != &#8220;undefined&#8221; &amp;&amp; oField != null &amp;&amp; oField.DataValue != null)<br />
{<br />
// Remove any left @<br />
var sTmp = oField.DataValue.replace(/@/g,&#8221;")</p>
<p> oField.DataValue = sTmp<br />
}</p>
<p>//load twitter search<br />
var CRM_FORM_TYPE_CREATE = 1;<br />
var CRM_FORM_TYPE_UPDATE = 2;<br />
switch (crmForm.FormType)<br />
{<br />
case CRM_FORM_TYPE_UPDATE:<br />
crmForm.all.IFRAME_TwitterSearch.src=&#8221;http://search.twitter.com/search?q=@&#8221; + crmForm.all.adm_twitteraccount.DataValue;<br />
break;<br />
}<br />
4) add this code to the form onload:<br />
//load twitter search<br />
var CRM_FORM_TYPE_CREATE = 1;<br />
var CRM_FORM_TYPE_UPDATE = 2;<br />
switch (crmForm.FormType)<br />
{<br />
case CRM_FORM_TYPE_UPDATE:<br />
crmForm.all.IFRAME_TwitterSearch.src=&#8221;http://search.twitter.com/search?q=@&#8221; + crmForm.all.adm_twitteraccount.DataValue;<br />
break;<br />
}<br />
5) save<br />
6) publish</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Portland Copywriter &#187; Blog Archive &#187; Ambient Awareness, Social Media and Customer Service</title>
		<link>http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/comment-page-1/#comment-64</link>
		<dc:creator>Portland Copywriter &#187; Blog Archive &#187; Ambient Awareness, Social Media and Customer Service</dc:creator>
		<pubDate>Mon, 20 Apr 2009 03:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://crmdynamo.com/?p=349#comment-64</guid>
		<description>[...] did a little digging, and found this sweet little hack to hook up a Twitter account with a customer&#8217;s account in Microsoft Dynamics CRM. It seems like a no-brainer to integrate [...]</description>
		<content:encoded><![CDATA[<p>[...] did a little digging, and found this sweet little hack to hook up a Twitter account with a customer&#8217;s account in Microsoft Dynamics CRM. It seems like a no-brainer to integrate [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/comment-page-1/#comment-61</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Tue, 14 Apr 2009 16:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://crmdynamo.com/?p=349#comment-61</guid>
		<description>Great points... less load on the servers, the better.  Thanks for your feedback!</description>
		<content:encoded><![CDATA[<p>Great points&#8230; less load on the servers, the better.  Thanks for your feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morten Dybdahl</title>
		<link>http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/comment-page-1/#comment-60</link>
		<dc:creator>Morten Dybdahl</dc:creator>
		<pubDate>Tue, 14 Apr 2009 12:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://crmdynamo.com/?p=349#comment-60</guid>
		<description>I agree that this is powerfull, and is really interesting for business purpose. 
And there are lots of powerfull knowledgebases that people could benefit from improving their customer relationships. Linkedin is another one, and there are probably more hype tools to come. 
I usually avoid the iFrame in make it a drop-down menu or a button. So, that you easy can add on as much as you would like. Another issue is that if you do it on form load; you should launch on the tab click event, not to reduce performance.</description>
		<content:encoded><![CDATA[<p>I agree that this is powerfull, and is really interesting for business purpose.<br />
And there are lots of powerfull knowledgebases that people could benefit from improving their customer relationships. Linkedin is another one, and there are probably more hype tools to come.<br />
I usually avoid the iFrame in make it a drop-down menu or a button. So, that you easy can add on as much as you would like. Another issue is that if you do it on form load; you should launch on the tab click event, not to reduce performance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/comment-page-1/#comment-56</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Mon, 23 Mar 2009 20:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://crmdynamo.com/?p=349#comment-56</guid>
		<description>Turns out Richard at dynamicscrmtrickbag.com also recently reviewed this topic.  Check out his take here:
http://www.dynamicscrmtrickbag.com/?p=231</description>
		<content:encoded><![CDATA[<p>Turns out Richard at dynamicscrmtrickbag.com also recently reviewed this topic.  Check out his take here:<br />
<a href="http://www.dynamicscrmtrickbag.com/?p=231" rel="nofollow">http://www.dynamicscrmtrickbag.com/?p=231</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://crmdynamo.com/2009/03/easily-integrate-twitter-search-results-about-your-clients-in-microsoft-crm/comment-page-1/#comment-55</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Mon, 23 Mar 2009 17:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://crmdynamo.com/?p=349#comment-55</guid>
		<description>Just thought of another great way to leveraging Twitter as a Customer Service tool in Microsoft CRM.

If you are a manufacturer or service provider, why not add this function to your Products in Microsoft CRM?  See the live twitter feed about your products in realtime.  Find twitterers who are complaining about your product or service, and assist them to improve customer satisfaction.  Finally, help spread the word when Twitterers love your product.

Good luck, and let me know what you think!</description>
		<content:encoded><![CDATA[<p>Just thought of another great way to leveraging Twitter as a Customer Service tool in Microsoft CRM.</p>
<p>If you are a manufacturer or service provider, why not add this function to your Products in Microsoft CRM?  See the live twitter feed about your products in realtime.  Find twitterers who are complaining about your product or service, and assist them to improve customer satisfaction.  Finally, help spread the word when Twitterers love your product.</p>
<p>Good luck, and let me know what you think!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

