<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Bradley M. Law</title>
	<link>http://bradleymlaw.com/wp</link>
	<description>Technology, CRM and Stuff.</description>
	<lastBuildDate>Mon, 16 Aug 2010 13:59:47 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.1" -->

	<item>
		<title>Setting the Default Date of a form to the current date with Record Creation</title>
		<description><![CDATA[THis script will set the default date of a form, this script is important because it sets the default date only for the Create form and not the update form. Otherwise the onload event will always set the date to the current date, even if its been updated. Credit to Sonomoa Partners. var CRM_FORM_TYPE_CREATE = [...]]]></description>
		<link>http://bradleymlaw.com/wp/2010/08/16/392/</link>
			</item>
	<item>
		<title>CRM &#8211; Making field required based on Lookup Value, NOT picklist&#8230;</title>
		<description><![CDATA[I posted this question to the CRM Forums here and got some good feedback from Rhett Clinton. if(crmForm.all.new_salesstageid.DataValue != null &#38;&#38; crmForm.all.new_salesstageid.DataValue[0].name != &#34;1&#34;) crmForm.SetFieldReqLevel(&#34;new_projectmanagerid&#34;, 1); else crmForm.SetFieldReqLevel(&#34;new_projectmanagerid&#34;, 0); And here is an example that works with multipe options if(crmForm.all.new_salesstageid.DataValue != null) { switch(crmForm.all.new_salesstageid.DataValue[0].name) { case &#34;1&#34;: case &#34;2&#34;: crmForm.SetFieldReqLevel(&#34;new_projectmanagerid&#34;, 1); break; default: crmForm.SetFieldReqLevel(&#34;new_projectmanagerid&#34;, 0); [...]]]></description>
		<link>http://bradleymlaw.com/wp/2010/07/30/crm-making-field-required-based-on-lookup-value-not-picklist/</link>
			</item>
	<item>
		<title>CRM Picklist Values for Report Paramaters</title>
		<description><![CDATA[Great way to pull report parameters by Customer Effective here.]]></description>
		<link>http://bradleymlaw.com/wp/2010/07/24/crm-picklist-values-for-report-paramaters/</link>
			</item>
	<item>
		<title>Setting attribute description as a tooltip for a field in entities forms in Microsoft Dynamics CRM 4.0</title>
		<description><![CDATA[Great code I have not tried yet but I am certain I will need it by ANDRIY A33IK BUTENKO]]></description>
		<link>http://bradleymlaw.com/wp/2010/07/24/setting-attribute-description-as-a-tooltip-for-a-field-in-entities-forms-in-microsoft-dynamics-crm-4-0/</link>
			</item>
	<item>
		<title>Add IFRAME to a form, system and custom entities plus format IFRAME</title>
		<description><![CDATA[This is a great piece of code I put together by merging two sets of code. Basically the following creates an IFRAME and formats the IFRAME in a professional manner. // Builds a string for the source attribute of an IFrame // Credit is given to Michael Hohne and Andrew Zimmer for the following code. [...]]]></description>
		<link>http://bradleymlaw.com/wp/2010/06/28/add-iframe-to-a-form-system-and-custom-entities-plus-format-iframe/</link>
			</item>
	<item>
		<title>CRM 4.0 Concatenate Lookup Fields or regular fields on Form</title>
		<description><![CDATA[Found a couple of solutions posted in the MS forums on this post, I had the best luck with the following: To start update new_OpportunityID and new_ContactID with your fields, this example concatenates the Opportunity ID and Contact ID lookup fields. var lookupItemOppID = new Array; lookupItemOppID = crmForm.all.new_OpportunityID.DataValue; var vOpportunityID= (lookupItemOppID[0] != null) ? [...]]]></description>
		<link>http://bradleymlaw.com/wp/2010/06/28/crm-4-0-concatenate-lookup-fields-on-form/</link>
			</item>
	<item>
		<title>Creating a CRM 4.0 test/training organization from your production organization</title>
		<description><![CDATA[Great article on creating a CRM 4.0 test/training organization from your production organizationhttp://www.wipfli.com/BlogPost_MCRM_Blog_8_12_09.aspx]]></description>
		<link>http://bradleymlaw.com/wp/2010/04/23/creating-a-crm-4-0-testtraining-organization-from-your-production-organization/</link>
			</item>
	<item>
		<title>Microsoft White Paper on Security and Authentication in Microsoft Dynamics CRM</title>
		<description><![CDATA[Security and Authentication in Microsoft Dynamics CRM: Connectivity and Firewall Port Requirements in On-Premise Deployments This is a great white paper that has come into use for an enterprise solution I am working with on a client site. This document covers Connectivity and Firewall Port Requirements in On-Premise Deployments for Dynamics CRM 4.0. Overview Many [...]]]></description>
		<link>http://bradleymlaw.com/wp/2010/03/24/microsoft-white-paper-on-security-and-authentication-in-microsoft-dynamics-crm/</link>
			</item>
	<item>
		<title>Removing the CRM For Outlook button appears in Microsoft Dynamics CRM</title>
		<description><![CDATA[Made the mistake of leaving the &#8220;CRM for Outlook&#8221; button my web form before turning users loose into a UAT preparation enviornment. Here is an article on removing the link from the Microsoft Support Site @ http://support.microsoft.com/kb/2004601 This is interesting. Looks like others have been searcing perhaps? Note This is a &#8220;FAST PUBLISH&#8221; article created [...]]]></description>
		<link>http://bradleymlaw.com/wp/2010/03/22/removing-the-crm-for-outlook-button-appears-in-microsoft-dynamics-crm/</link>
			</item>
	<item>
		<title>CRM Concatenate two fields (or more than two)</title>
		<description><![CDATA[Always a good one to remember. crmForm.new_fullname.DataValue = crmForm.new_firstname.DataValue + &#34; &#34; + crmForm.new_lastname.DataValue]]></description>
		<link>http://bradleymlaw.com/wp/2010/03/18/crm-concatenate-two-fields-or-more-than-two/</link>
			</item>
</channel>
</rss>
