Questions tagged [dynamics-crm-365]

Microsoft Dynamics 365 is Microsoft's latest a multi-lingual Enterprise Business Solution (CRM + ERP). It makes use of Apps to segregate Sales, Marketing, Customer Service, Field Service, Project Service and Portal Functionalities.

Microsoft Dynamics 365 is Microsoft's latest a multi-lingual Enterprise Business Solution (CRM + ERP) which combines Dynamics CRM, Dynamics AX, Dynamics NAV, etc under one roof. It makes use of Apps to segregate functionality such as Dynamics 365 for Sales App, Dynamics 365 for Customer Service App, Dynamics 365 for Project Service Automation App, Dynamics 365 for Field Service App, Dynamics 365 for Operations App, Dynamics 365 for Financials App, and Dynamics 365 for Marketing App. It also includes Portal Capabilities, Flow and Power Apps as part of its packaging. You can either purchase individual Apps or bundle them together.

443 questions
3
votes
0 answers

DataDescription contains no data after data is retrieved from CRM using SavedQueryVisualization

I retrieve data from CRM online using the following code line. This code retrieves a single-series chart. SavedQueryVisualization query= (SavedQueryVisualization)_orgService.Retrieve(SavedQueryVisualization.EntityLogicalName, guid, new…
Jay
  • 31
  • 4
3
votes
2 answers

Add distinctive entity sub components to a Dynamics CRM solution

I am working on a utility in which i am creating a rollback solution based on the provided target solution. As of now the utility is working fine, and it reads the solution to be deployed on target org and creates a new rollback solution on target…
3
votes
4 answers

How to apply custom FetchXML to a Subgrid using JavaScript

The implementation of applying custom FetchXML to a Subgrid appears to have changed from CRM 2011/13 to Dynamics 365. The change is with respect to GridControl.SetParameter(). I have followed many articles talking about this same issue but nothing…
3
votes
2 answers

Programmatically finishing business process flow in Dynamics CRM 365

I am managing the whole CRM process flow in C# code, using the newest SDK version (8.2). Moving forward works fine, simply by updating the stageid on the relevant entity. However I have no idea, how could I finish the last stage = how could I set…
Jan
  • 127
  • 1
  • 10
3
votes
0 answers

CrmServiceClient extremely slow when connected to Microsoft Dynamics online / 365

I'm trying to use CrmServiceClient class from the last CRM SDK to retrieve data from a Dynamics 365 environment. CrmServiceClient caches connection info, even when new instances of CrmServiceClient are created and disposed!. My application connects…
2
votes
1 answer

CRM 365 - Blocking the "onSave" operation when validations require FetchXMLQueries be executed

The CRM365 forms provide the "OnSave" event to be able to perform business validations. If one of the validations fails, we can use the "executionContext.getEventArgs().preventDefault()" to stop the record creation. It is all good vor validating…
Maf
  • 45
  • 1
  • 6
2
votes
2 answers

Not able to set Status of imported products to "Active" in Dynamics 365 sales

I am trying to import product table data using Azure data factory to Dynamics 365 sales and it is being imported successfully. However all the products are in draft state, even though I had set the statecode (Status) value to 0 as in the…
2
votes
0 answers

Unit Testing for Javascripts in Dynamics 365

I am looking for some references related to javascript unit testing for D365. Since the new object model ExecutionContext.getFormContext has replaced the old Xrm.Page model, I am unable to find some info on this new object model which has been used…
Mishigen
  • 1,241
  • 6
  • 26
  • 37
2
votes
2 answers

Migration From CRM to cloud 365. Ribbon Workbench export solution

We migrate from CRM desktop version to dynamics 365 cloud version. I need to import buttons for entity. Can I export them from the old version by solution and import them to new version of CRM as an unmanaged solution? Please explain the flow I…
Oprain
  • 33
  • 2
2
votes
2 answers

What does this error mean "The 'RetrieveMultiple' method does not support entities of type" in Dynamics CRM /api/data/?

When I try to execute the request to GET ../api/data//officedocuments and at least 10 entities, I get an error: {"error":{"code":"0x80040800","message":"The 'RetrieveMultiple' method does not support entities of type…
2
votes
1 answer

What does this "IsValidODataAttribute": true mean in /api/data/v...?

I have a problem with querying records of an entity type activityparty. I use the request to GET /api/data/v.../activityparties?$select=activitypartyid,partyidname but it fails with the error: { "error":{ "code":"0x0", …
2
votes
1 answer

Issue adding dynamic link in email template - CRM Dynamics 365

I have a process which triggers when a case is assign, the process send an email to the case owner with the content of the case which also include a dynamic link to the case assigned. I could achieve it in CRM 2011 however I don't see any option to…
2
votes
1 answer

Is it possible to create "customeraddress" entity record using "/api/data//' API?

I tried to create "customeraddress" record but got such an error: { "error": { "code": "0x80040205", "message": "Parent id not set for address type 1071", "innererror": { "message": "Parent id not set for address type 1071", …
2
votes
2 answers

Hide 'Related' tab from the Case for interactive Experience form in Dynamics 9.0

Is there any way to remove the 'Related' tab from the Case for interactive Experience form? There are no related entities to the form still the related tab is coming up in the form. Already tried from the customization form.
2
votes
5 answers

How to find out which Entity in Dynamics CRM is system?

I am using the request to GET "/api/data/v9.0/EntityDefinitions" to list all the entities that are present in Dynamics. But the problem is that I cannot find which field indicates that this entity is system. Can anyone provide me with a solution to…
1 2
3
29 30