Resolution for “Invalid User Authentication” by re-linking a user’s CRM account to Active Directory
|
||||||
|
Resolution for “Invalid User Authentication” by re-linking a user’s CRM account to Active Directory 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 ) [...] 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 = [...] I posted this question to the CRM Forums here and got some good feedback from Rhett Clinton. if(crmForm.all.new_salesstageid.DataValue != null && crmForm.all.new_salesstageid.DataValue[0].name != "1") crmForm.SetFieldReqLevel("new_projectmanagerid", 1); else crmForm.SetFieldReqLevel("new_projectmanagerid", 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 "1": case "2": crmForm.SetFieldReqLevel("new_projectmanagerid", 1); break; default: crmForm.SetFieldReqLevel("new_projectmanagerid", 0); [...] 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 [...] Always a good one to remember. crmForm.new_fullname.DataValue = crmForm.new_firstname.DataValue + " " + crmForm.new_lastname.DataValue Great article on compatibility between II6 and II7 b y ActiveXperts. http://www.activexperts.com/support/activmonitor/online/ii6metabase/ How to install the IIS 6 Metabase Compatibility components on IIS 7 The ActiveXperts Network Monitor Web Configurator requires that the Windows Server 2008-based or Windows Vista-based computer where you are configuring a Virtual Directory has the IIS 6 Metabase Compatibility components installed. [...] Just had a strange issue on a development server where I was not able to add a new custom entity? After a little research I found the following two articles on this topic. It seems that an old rollup was the cause, in my case a simple IISRESET did the trick however here are the [...] Hi, I have a CRM client with the pockets to polish the applications to their needs. I, being the semi coder that I am and having little experience with plug-ins searched high and low for a tool to hide the annoying system views that cannot be removed from CRM 4.0. By pur chance I am [...] Great videos on Microsoft Dynamics CRM 4.0 development. found here. Most appear to be large wmv downloads. Microsoft Corporation July 2008 Summary This article contains links to presentations and labs to help developers use their existing .NET skills to build on top of the Microsoft Dynamics CRM 4.0 platform. Applies To Microsoft Dynamics CRM 4.0 [...] |
||||||
|
Copyright © 2012 Bradley M. Law - All Rights Reserved |
||||||