Posts

Showing posts with the label d365

Trial Instance of dynamics customer engagement is not getting created

Image
Almost week ago, I created a trial instance browsing trials.dynamics.com by following below steps that I am following from ages: Browse https://trials.dynamics.com/ Click on Sales Click sign up here No continue signing up Give email address and click next Fill out profile details Verify mobile number Give domain name Create admin user and password Click sign up Trial was created. But but, it was landed in Power Platform Admin Center.  Problem Statement I was able to open Dynamics CRM Instance. However, I'd only two apps and was able to view Customer entities only. No Sales, Services and nor Marketing Entities was available in Advanced Find. Possible Solutions ( that didn't work ) --> Install database in Admin Center of Power Platform --> Install stand alone application (i.e Sales Pro and Marketing) --> Change Region  --> User different Email and Mobile phone to create Trial instance --> Clear Browser Cache --> Try in another browser Solution After applying al...

Get Rid off Pending Email Warning - Microsoft Dynamics CRM

Image
Problem This is really weird when you login into MSD CRM and you came across with following screen. Reason This happen when you are sending email using workflow and the email stuck with status Pending Send Resolutions Following are three resolutions to this issue: Go to Settings > Email Configurations > Mail Boxes  and open Mail box ( that don't have approved email address and didn't test run ), then from Ribbon,   Approve Email Address and after that click on Test Run , You will see prompt coming from CRM, check the box click Ok . Create an on-demand workflow, to change the status of Pending Send email messages to some other status, say Canceled. And run this workflow from advanced find against those emails that are set to Pending Send Go to Advanced Find , Look For Email Message and Query for Status Reason  equals Pending Send, click Results and then delete all message with Pending Send Status After following any aforementioned step yo...

How to quickly connect to Dynamics CRM/365 (online-onprem) using C#?

Note: for this walkthrough I’ve been using ConsoleApplication Step 1: Add following .Net references:         System.Runtime.Serialization       System.ServiceModel Step 2: Add following references available in Bin folder of the SDK         Microsoft.Xrm.Sdk       Microsoft.Crm.Sdk.Portal Step 3: Add following namespaces in your class file         using System.Runtime.Serialization;       using System.ServiceModel;       using System.ServiceModel.Description;       using Microsoft.Xrm.Sdk;       using Microsoft.Xrm.Sdk.Client;       using Microsoft.Xrm.Sdk.Query;       using Microsoft.Xrm.Sdk.Discovery;       using ...