Questions tagged [dynamics-crm-online]

Microsoft Dynamics CRM Online is a Customer Relationship Management software package developed by Microsoft Corporation. It was offered under this name between December 2007 and September 2018 (version number 4 until version number 8.1), before it was integrated into the Dynamics 365 product family and marketed as Dynamics 365 for Customer Engagement (for questions regarding this more recent product, please see the related tag).

Useful Links:

  1. Online vs Onpremise - FAQ
  2. Dynamics CRM Online - Licensing & Pricing guide
  3. Dynamics CRM Online and Dynamics 365 build versions
  4. Microsoft announces branding switch from CRM Online to 365 for Customer Engagement
1206 questions
4
votes
1 answer

Establish connection to Dynamics CRM Online web service from Windows 8 metro style app

I have serious problem with creating a connection to dynamics CRM online from my Window 8 metro style application. My code works fine under normal (full) .net framework, but fails under WinRT private IOrganizationService OrgService { get; set;…
andpo
  • 41
  • 4
4
votes
2 answers

How to get current user record in CRM plugin?

I am developing a plugin . Whenever a plugin gets invoked, I need to get current user information ? Is there any way to retrieve that?
user1000258
  • 567
  • 2
  • 8
  • 16
3
votes
1 answer

Microsoft CRM 2011 Online Fetchxml Report Error when loading into CRM

I have created tons of reports in BIDS and deployed them to the online instance of my CRM. The issue I am having is with the following bit of code.
Andrew Woodard
  • 545
  • 1
  • 7
  • 21
3
votes
2 answers

Call javascript function from another javascript webresource

There is one JavaScript web resource in CRM 2011 called new\_/Script/genericJScript.js. Which contains some functions say, \_retrieveRecord() and \_Context() as below. And I need to call these methods from another JavaScript web resource called…
3
votes
1 answer

CRM Online 2011 Integration Testing running in Production environment

I'm writing some code for Dynamics CRM Online 2011. I'd like to have a set of integration tests be run in CRM Online and be able to examine: Some log output Assertion failures Under the control of a test runner on my local machine. Right now, I'm…
Ruben Bartelink
  • 59,778
  • 26
  • 187
  • 249
3
votes
0 answers

Application User access to SharePoint through D365

We use an application user (https://learn.microsoft.com/en-us/powerapps/developer/data-platform/use-single-tenant-server-server-authentication) to do CRUD operations for dynamics crm, everything works fine except when we start to upload files to the…
Mihai P.
  • 9,307
  • 3
  • 38
  • 49
3
votes
1 answer

Accessing From Context From WebResource Hosted In Form Post Xrm.Page Removal

What is the best approach to access the FormContext of a form from a WebResource hosted on the form? The docs say to access the Form Context from a html WebResource to use parent.Xrm.Page. An HTML web resource added to a form can’t use global…
Daryl
  • 18,592
  • 9
  • 78
  • 145
3
votes
4 answers

Remove spaces in string before comparison

I want to get Contacts based on phone number, but in Ms Dynamics phone numbers are stored in all kinds of format like 123 45 678, 12 34 56 78, 0112345678, 01 12345678 and so on. So I have to remove spaces in them before I do the comparison, I did…
Qwark
  • 486
  • 11
  • 26
3
votes
2 answers

Dynamics 365 CRM SDK or Rest API

I need to create a CRM E-Mail activity with attachement from code. As far as I know there are two ways to do this. I could use the dynamics 365 CRM SDK or the dynamics 365 CRM Rest API. My question is which one I should use at the moment? I know…
N.Zemp
  • 33
  • 4
3
votes
4 answers

Date is off by one day when using the API or C# program

Using Postman, or the C# program I have, I am trying to send a date to CRM. The date being passed is "2019-09-15", but when it shows up in CRM it is "2019-09-14". In Postman, I am sending this in the PATCH body: { "org_paymentreceived":…
3
votes
1 answer

CrmServiceClient cannot be instantiated

We have a situation where the CrmServiceClient class cannot be instantiated, with an 'Object reference not set to an object' error coming from deep within the bowels of the constructor. I've also received a Collection was modified; enumeration…
link64
  • 1,944
  • 1
  • 26
  • 41
3
votes
3 answers

How to Get a Dynamics 365CE Personal Development Environment?

I'm learning Microsoft Dynamics 365CE online and I'd like a personal environment to try out development on. Is there a way to do this without paying for a full licenced environment? I'm not going to use this for production, only personal education.
3
votes
2 answers

Send picklist value to Dynamics crm online to create lead using soap php

I am trying to create a lead in crm 365 online using soap in php. I can create a lead successfully by sending soap request but I want to send leadsource as well and it's a picklist in crm. Here is my code in php. Not sure which datatype to use,…
User27
  • 535
  • 5
  • 25
3
votes
2 answers

Associate Role to a User Microsoft Dynamics CRM (Rest API)

I have use case where I need to create a role, create a user in crm instance and associate role to user. I have explored api to create user and create role. Below is the code : private void createUser(IntegrationUserDTO integrationUserDTO, STSDto…
3
votes
3 answers

/api/data/v8.2 to /api/data/v9.0 after dynamics CRM online upgrade?

I'm relatively new to using the Web API (HTTP REST API) to access Dynamics CRM using javascript so I apologise in advance if this is a stupid question. We've recently upgraded from v8.2 online to v9.0. Does this mean that I have to parse the js code…