Archive for the ‘CRM5’ Category

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 [...]

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”); [...]

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 [...]

 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) { [...]