One of our client wanted to move CRM Server from One Data Centre to different data centre but due to some constraint we could not move it by creating New Organization or by new deployment. We had only left option was update IP address manually. Recently we moved our CRM Server from one data centre [...]
Archive for the ‘CRM5’ Category
Moving CRM Servers(Application and Database) to New DataCentre
Posted: February 26, 2012 in CRM 2011, CRM5, Microsoft .NET, Microsoft Dynamics CRM, SQL ServerTags: CRM, Data Centre, DeploymentProperty, Microsoft Dynamics CRM, Migration, Migration To New Data Centre, Move servers to new Data Centre, MSCRM_Config
Interacting Silverlight with CRM Forms
Posted: December 27, 2011 in CRM 2011, CRM5, JScript, Microsoft Dynamics CRMTags: CRM2011, JScript, OData, Silverlight, Silverlight with CRM 2011, WCF, Xrm.Page
Silverlight application can get a reference to the Xrm.Page Object instance using either of following approaches. 1. Using HTML bridge feature of Silverlight ScriptObject xrm = (ScriptObject)HtmlPage.Window.GetProperty(“Xrm”); ScriptObject page= (ScriptObject)xrm.GetProperty(“Page”); 2. Using Dynamic Language Runtime Using DLR you can utilize the dynamic language keywords which allow resolving method calls at runtime. dynamic xrm = (ScriptObject)HtmlPage.Window.GetProperty(“Xrm”); [...]
Differences between Data Migration and Data Import
Posted: December 8, 2010 in CRM 2011, CRM5, Microsoft Dynamics CRMTags: CRM, Data Import, Data Migration Manager
As mentioned in CRM Sdk, below is the major differences between Data Migration and Data Import. Data migration and data import use common entity model and messages. However, there are some important differences in the feature sets of the two operations as shown in the following table. Feature Data Migration Data Import Import data into [...]
Populate Lookup value on selection of another Lookup
Posted: December 8, 2010 in CRM 2011, CRM5, Lookup, Microsoft Dynamics CRMTags: Ajax, CRM, Dynamics Lookup, Lookup, WebService
Step 1. Step 2. Step 3. Let me explain the scenario… Suppose we have City Lookup on Lead entity and we want to populate Region (Lookup), State (Lookup) and Zone (Lookup) on selection of particular City from City Lookup. You need to write below code on OnChange event of City Lookup field. if(crmForm.all.new_cityid.DataValue !=null) { [...]

