The post How to Enable Dynamics 365 CRM and SharePoint Integration Step by Step appeared first on Microsoft Dynamics 365 Blog.
]]>You need a quick and easy way to store and access files related to opportunities, accounts, quotes, contacts, and more. This includes contracts, quotes, offers, images, etc. then you should be looking for is Dynamics 365 integration with SharePoint.
1 – clock on setting and then Advanced Settings. If you can’t find this, make sure you are logged in as a user with administrator privileges.
2 – Open Settings and choose System – Document Management
3 – Choose the option Configure Server-Based SharePoint Integration
4 – On the wizard that will open, indicate if your SharePoint is Online or On-Premises. The SharePoint integration can connect to both. It can even connect to multiple SharePoint sites, but they all have to be either online or On-Premises.
5 – Assuming you chose Online on the previous step, now you one need to enter the URL of the SharePoint site you want to use.
You can simply copy the URL from when you are on the SharePoint site main page and the wizard will validate it when you click Next.
6 – Assuming the validation succeeds, the final step to enable your Server-Based SharePoint Integration is clicking the Finish button.
You can now go back to your Document Management screen and select which entities should be enabled for SharePoint folders.
Click on Document Management Settings.
In the pop-up window, you check the entities under which you anticipate storing documents and click Next.
You can then define the folder structure. Here are your options:
Make your selection and click Next. We might have to wait a little at this point as the document libraries will be created. Once you’ve done that, you can click Finish.
The integration is now live! On the Dynamics 365 side you will now see a document option under the entities you enabled. On the screenshot below you can see the document that we created for an Account. Notice that its storage is on SharePoint.
Click on Upload, and you’ll see an Upload Document dialog box.
Choose the files from your PC (or OneDrive even).
Now you have access to SharePoint. You should see three files inside the Opportunity folder. You will also see a nested Opportunity folder within your Wonderful World account folder. piece of cake. Another nice thing is that SharePoint users can access these files. No need to own a Dynamics 365 license. This means that other members of your organization can contribute to these documents as needed.
The post How to Enable Dynamics 365 CRM and SharePoint Integration Step by Step appeared first on Microsoft Dynamics 365 Blog.
]]>The post Unable to Connect Plugin Registration tool with MS CRM v9 / D365 SDK appeared first on Microsoft Dynamics 365 Blog.
]]>For downloading the latest PRT from VS Nuget packages – this link might be useful
Step 1 Open Fiddler and navigate to Tools – Options – HTTPS Tab
Step 2 Under HTTPS tab click on to Protocols link – a Popup will come change the TLS vesion from 1.0 / 1.1 to tls 1.2. i.e. “ <client>;ssl3;tls1.2 ” and press on ok
Now you will be able to connect to your CRM v9 Organisation with PRT
Happy CRMing
SOURCE : mscrm.com
The post Unable to Connect Plugin Registration tool with MS CRM v9 / D365 SDK appeared first on Microsoft Dynamics 365 Blog.
]]>The post Dynamics CRM V9 / D365 connection Error Console or Custom Web Application appeared first on Microsoft Dynamics 365 Blog.
]]>Message : “One or more errors occurred.”
Source : “mscorlib”
Code Snippet :
//Create an HTTP client to send a request message to the CRM Web service.
using (HttpClient httpClient = new HttpClient(messageHandler))
{
//Specify the Web API address of the service and the period of time each request
// has to execute.
httpClient.BaseAddress = new Uri(serviceUrl);
httpClient.Timeout = new TimeSpan(0, 2, 0); //2 minutes
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
//Send the WhoAmI request to the Web API using a GET request.
var response = httpClient.GetAsync(“api/data/v9.0/WhoAmI”,
HttpCompletionOption.ResponseHeadersRead).Result;
if (response.IsSuccessStatusCode)
{
//Get the response content and parse it.
JObject body = JObject.Parse(response.Content.ReadAsStringAsync().Result);
Guid userId = (Guid)body[“UserId”];
Console.WriteLine(“Your system user ID is: {0}”, userId);
}
else
{
Console.WriteLine(“The request failed with a status of ‘{0}'”,
response.ReasonPhrase);
}
}
Happy Coding
SOURCE : https://community.dynamics.com
The post Dynamics CRM V9 / D365 connection Error Console or Custom Web Application appeared first on Microsoft Dynamics 365 Blog.
]]>