Setting Field Equal to Another Field

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 && crmForm.all.new_applicationname.DataValue==null ) [...]

Displaying CRM Advanced Find Views in IFRAMES

Interesting article on howw to display the result set of an advanced find grid in an IFRAME. I have not tried it yet but I think this may be very useful. http://jamesdowney.net/blog/post/Displaying-CRM-Views-in-IFRAMES.aspx

MS CRM 4.0 Filtered Lookups

A common question that resonates through the CRM customer base is allowing for filtered lookups between entities. I am currently in the final stages of a client who wanted this functionality between some custom relationships set between contacts and opportunities and another custom entity and opportunities. Here are a couple of resources on the two: [...]