Reputation: 444
I am getting error establishing a data connection in excel to import MS Dynamics report. Here what I have followed so far:
I put the URL I got from developer resource in MS CRM that exactly looks like this format
This is the url I am using (cannot reveal org name)-
https://orgname.api.crm.dynamics.com/XRMServices/2011/Organization.svc
When I click next, I get this error -
OData: The given URL neither points to an OData service or a feed: 'https://orgname.api.crm.dynamics.com/XRMServices/2011/Organization.svc'.
Why I am getting this error and what is the possible resolution?
Upvotes: 1
Views: 337
Reputation: 22836
You have to use OrganizationData.svc
.
The URL will look like: https://orgname.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/
Note the trailing slash /
at the end of URL.
Settings – Customizations – Developer Resources menu
Upvotes: 0