Posts

Showing posts from 2016

Microsoft Dynamics CRM Publish Entities Customization using C# code PublishXmlRequest

This post is to demonstrate that you can publish entity customization with the help of C# code. In one of the project which I was working on faced the issue of publishing entity customization from web client. I was getting generic SQL error "SQL timeout error". It was very hard to publish the changes from web client and deliverable were also impacted. I searched over the internet and found that we can publish the changes using C# code without facing any issue. Sample code _serviceProxy.Execute(new PublishXmlRequest             {                 ParameterXml = @"                     <importexportxml>                         <entities>                             <entity>systemuser</entity>                             <entity>lead</entity>                         </entities>                     </importexportxml>"             }); Create Organisation service object and initialise it with

Microsoft CRM Dynamics Technical And Functional Interview Question and Answer

You cannot export the Default Solution as a Managed Solution, and you cannot deploy a complete Default Solution from Microsoft Dynamics CRM on-premises to Microsoft Dynamics CRM Online or the other way around. You can deploy a custom Solution between two Microsoft Dynamics CRM 2013 systems that use either platform. Hitachi Interview Question 1.        Explain OOPS concept OOP Features Object Oriented Programming (OOP) is a programming model where programs are organized around objects and data rather than action and logic.   OOP allows decomposition of a problem into a number of entities called objects and then builds data and functions around these objects. The software is divided into a number of small units called objects. The data and functions are built around these objects. The data of the objects can be accessed only by the functions associated with that object. The functions of one object can access the functions of another object. OOP h