<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bradley M. Law &#187; CRM 4.0</title>
	<atom:link href="http://bradleymlaw.com/wp/tag/crm-40/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradleymlaw.com/wp</link>
	<description>Technology, CRM and Stuff. Thoughts within thoughts...within thoughts.</description>
	<lastBuildDate>Wed, 07 Sep 2011 11:40:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting Field Equal to Another Field</title>
		<link>http://bradleymlaw.com/wp/2010/10/20/setting-field-equal-to-another-field/</link>
		<comments>http://bradleymlaw.com/wp/2010/10/20/setting-field-equal-to-another-field/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 15:12:05 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CRM 4.0]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[customizations]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=416</guid>
		<description><![CDATA[Sets a normal txt field equal to a lookup field if(crmForm.all.new_projectnameid.DataValue!=null) var applicationname = crmForm.all.new_projectnameid.DataValue[0].name; crmForm.all.new_applicationname.DataValue = applicationname; crmForm.all.new_applicationname.ForceSubmit = true; Sets a text field equal to another text field crmForm.all.new_applicationname=new_name; crmForm.all.new_applicationname.ForceSubmit = true; This ensures a lookup field (project name) is not empty and application is empty (application name) if (crmForm.all.new_projectnameid.DataValue!=null &#38;&#38; crmForm.all.new_applicationname.DataValue==null ) [...]]]></description>
			<content:encoded><![CDATA[<p>Sets a normal txt field equal to a lookup field</p>
<pre class="brush: php; title: ;">
if(crmForm.all.new_projectnameid.DataValue!=null)

var applicationname = crmForm.all.new_projectnameid.DataValue[0].name;
crmForm.all.new_applicationname.DataValue = applicationname;
crmForm.all.new_applicationname.ForceSubmit = true;
</pre>
<p>Sets a text field equal to another text field</p>
<pre class="brush: php; title: ;">
crmForm.all.new_applicationname=new_name;
crmForm.all.new_applicationname.ForceSubmit = true;
</pre>
<p>This ensures a lookup field (project name) is not empty and application is empty (application name)</p>
<pre class="brush: php; title: ;">
if (crmForm.all.new_projectnameid.DataValue!=null &amp;&amp; crmForm.all.new_applicationname.DataValue==null )
{
var applicationname = crmForm.all.new_projectnameid.DataValue[0].name;
crmForm.all.new_applicationname.DataValue = applicationname;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/10/20/setting-field-equal-to-another-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Marketing List Members (List Member View) CRM 4.0</title>
		<link>http://bradleymlaw.com/wp/2009/02/18/customize-marketing-list-members-list-member-view/</link>
		<comments>http://bradleymlaw.com/wp/2009/02/18/customize-marketing-list-members-list-member-view/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 16:34:50 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[CRM 4.0]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/2009/02/18/customize-marketing-list-members-list-member-view/</guid>
		<description><![CDATA[One of the sales guys initiated a question on updating the columns for the Marketing List Members View in CRM 4.0. I was less than optomistic on how, but I found the following blog posting from the Microsoft Dynamics CRM Team Blog which shows you how. Whew, an odd one at best I must say? [...]]]></description>
			<content:encoded><![CDATA[<p>One of the sales guys initiated a question on updating the columns for the Marketing List Members View in CRM 4.0. I was less than optomistic on how, but I found the following blog posting from the Microsoft Dynamics CRM Team Blog which shows you how. Whew, an odd one at best I must say?</p>
<p>http://blogs.msdn.com/crm/archive/2008/04/02/customize-marketing-list-list-member-view.aspx</p>
<div class="wp-caption alignnone" style="width: 498px"><img alt="Marketing List Members" src="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/CustomizeMarketingListListMemberView_9C51/clip_image002_thumb.jpg" title="Marketing List Members" width="488" height="250" /><p class="wp-caption-text">Marketing List Members</p></div>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2009/02/18/customize-marketing-list-members-list-member-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

