Microsoft Dynamics CRM is a multilingual Customer Relationship Management software package developed by Microsoft. It has built in support for Sales, Marketing and Service. It can be used as an xRM platform.
Is there a way to connect to Dynamics CRM 365 from a .NET Core application via the Dynamics SDK? Or should I use the Web Api?
I've read it could be possible, but when I reference the SDK from my .NET Core Class Library and try to connect I get the…
When trying to use Microsoft Dynamics 365 SDK Core Assemblies in a .NET Core 2.0 project, the following error occurs at runtime simply by using Microsoft.Xrm.Sdk:
TypeLoadException: Could not load type
…
I have created following code, and I have included this as web resource on the CRM 2011 form to be called on field onchange event of lookup field. Everything is working fine before the $.ajax({... line and then I have an error “$ is undefined”.
I am…
With this guide: https://msdn.microsoft.com/en-us/library/mt607719.aspx, I'm trying to create a batch request to delete all quotedetails on a quote.
I'm using jquery's ajax to do the request:
$.ajax(
{
method: 'POST',
url:…
I'm trying to access a Dynamics CRM Online REST API with Azure AD oAuth 2 Authentication. In order to do so I followed these steps:
- I've registered a web application and/or web api in Azure
- Configured the permissions to Dynamics CRM to have…
Does anyone know how can Convert EntityReference to Entity.
protected override void Execute(CodeActivityContext executionContext)
{
[Input("Email")]
[ReferenceTarget("email")]
public InArgument EMail { get; set; }
Entity…
I have written a Linq to CRM query using CRM 2011 RC (v5) LINQ-to-CRM provider. I have a locally declared List which I want to join to a CRM entity and I want the query to be executed on the CRM Server. An example might help:
MyObject myObject =…
I use Erik Pool's implementation of ICodeWriterFilterService and Manny Grewal's GenerateOption function as a model to filter out unwanted entities in the file that CRMSvcUtil generates. While Erik recommends returning true for the GenerateOptionSet…
We are able to create new entities without any issues, but updating an existing entity in a plugin this does not appear to be working. This is for CRM 2011.
var crmContext = new CustomCrmContext(service);
var contact =…
Whenever I click on an opportunity to customize it
The window bellow opens
It appears that the customization window is trying to open an activity window and it should open a opportunity chart window. The only error displayed is "Invalid User…
I am planning to upgrade my CRM (On premises) 2011 to CRM 2016 (On premises). And now I am looking for the best way to migrate the data. By the way, there're a lot of custom data (entities, fields, WFs).
Microsoft recommends a step-by-step upgrade…
I'm trying to retrieve a list of entities from CRM, but I'd like to get each one with the related entities. So far, I've the following code:
FilterExpression filterExpression = new FilterExpression();
ConditionExpression condition = new…
I implemented one custom workflow in in Visual Studio 2010 using CRM 2011 Developer Toolkit. It was working fine with system generated namespace. But, when I changed the namespace of my project, its throwing an error "Error registering plugins…
This question is in relation to a Plugin which I am now creating for Dynamics CRM 2011.
I have an entity which has 5 attributes. 1 of these attributes is a Lookup to another entity.
What I am trying to do with my Plugin is to retreive the Guid of…
having a lot of trouble with this one. I am trying to run a simple
jquery script inside of an html page to just pop up an alert box.
I have uploaded the jquery library and the json library
I have an html page with the following references and the…