Questions tagged [dynamics-365-ce]

5 questions
1
vote
0 answers

Dynamics 365 CE On Premises, Asynch Service is crashing with SQL Exception related to Datacenter object not found in DB

On one of Client we have Dynamics 365 CE On Premises V 9.0.4xxx. Environment is Development, single CRM server installation having claim based authentication using ADFS. Database and Reporting Services is on another server. We are facing some…
0
votes
1 answer

Is there a plugin message I can intercept to modify the query used in quote print form generation?

In my Dynamics 365 Customer Engagement cloud implementation I want to use standard "Export to PDF" feature. But first, I would like to intercept and modify the data that is being merged into template. Is there a plugin message I can use for that? I…
skfd
  • 2,528
  • 1
  • 19
  • 29
0
votes
0 answers

Dynamics 365 Customer Journey analytics not displaying

So, a bit of an issue here which I cannot figure out. In the marketing app, when I go look at the "insights" tab of a certain email address we used send out content to (the email address has been deactivated), it's all blank. It doesn't show any…
0
votes
1 answer

Upload PDF ( > 4 MB) to File datatype in D365 CRM

I'm trying to upload a PDF file to a CRM record. I've used a File type field in the entity that can hold my uploaded file. I've done this by using this code: UploadBlockRequest blockRequest = new UploadBlockRequest(); blockRequest.BlockData =…
3iL
  • 2,146
  • 2
  • 23
  • 47
0
votes
2 answers

D365 CE: difference between OrganizationServiceContext and QueryExpression through Service?

I'm trying to execute a LINQ query within a plugin, using the OrganizationServiceContext, to retrieve some quotes. On these quotes, I'm using .Select() to only select the value for the field cgk_totalnetprice, as shown below: quotes =…