I need a custom grid in Microsoft Dynamics CRM 2013. From SharePoint's perspective, this is a web part. But in CRM 2013, I do not see any similar concept. Need a custom grid to appear in a pane for an entity in the CRM? If possible, how can it be implemented? Any ideas?
Your question is comprehensive, but I think what you mean is how to create a custom web in CRM Page
In Dynamics CRM 2013, you can not add custom ASPX page as a part of CRM, you can only keep custom silverlight and HTML / JavaScript powered web pages, which are later liked The way to make them
However, if you want to create a custom web application, you can create it as a separate web application in a different IIS website, you can use CRM web services to access data, And then embed this web application in an iframe on an entry form in the CRM.
To connect to the CRM web service, with custom apps, you can use initial or late bindings.
Initial binding sample Late binding sample Personally I use late binding because the connection is easy And better performance in it. The easiest way to get a connection to the CRM service for CRUD is the following code:
string connString = "Url = {DynamicsCRMUrl}"; Username = Username; password = password; DeviceID = AnyDeviceId; DevicePassword = AnyDevicePasscode "; CrmConnection CRM = CrmConnection.Parse (connString); IOrganizationService Service = (IOrganizationService) New Organization Service (CRM);
You need to add device ID and device password to CRM Online and IFD configured CRM, this is not necessary for the base.
Ensure that you have the necessary legislative assemblies.
I am answering the question with a long shot, with beliefs, because I'm not sure this is what you want but I hope that it guides you.
No comments:
Post a Comment