dynamics-crm-2013

Missing trace logs in custom workflow activity for Real-Time workflow

无人久伴 提交于 2020-01-02 05:45:14
问题 I've written a custom workflow activity against CRM 2013. You don't need to understand what it does. The problem I have is that despite instantiating the ITracingService , any tracing content that I generate using the Trace(...) method is obfuscated at runtime for real-time workflows only . In other words, if I run my workflow asynchronously and (deliberately) throw an Exception, I get to see the trace log in the corresponding system job record. If I simply switch the workflow to be "real

Microsoft Dynamics CRM Online (2013) - Get number of tickets via API

半世苍凉 提交于 2019-12-25 02:45:22
问题 I use Dynamics CRM Online (2013) to manage daily incident tickets, daily requests and change requests. I'd like to use their API and pull this information into a custom application to display them on a dashboard. Basically what I want to do is to be able to grab the number of open tickets using my application. Then it'll publish this information to elsewhere. It's a Java application running on a Windows server. Can you please point me in the correct direction? 回答1: MSDN lists a walkthrough

How to change the navigation in dynamics CRM

浪子不回头ぞ 提交于 2019-12-24 15:22:07
问题 I tried creating a solution and I clicked on " Add existing item " and selected the " Sitemap ". But when I click on the sitemap to edit it nothing happens. How can I customize the top level tile navigation in CRM ? 回答1: For easier editing of sitemap you will have to use some tool like XrmToolbox. 回答2: You can edit SiteMap in CRM either manually or using some tool. On the url below microsoft has mentioned: Using a sitemap editor can facilitate editing the sitemap. A popular one is included in

Azure Service Bus Topic subscribe from CRM plugin

非 Y 不嫁゛ 提交于 2019-12-24 08:47:02
问题 I am successfully posting messages from a CRM plugin to an Azure Service Bus Queue. Ideally I need CRM to listen to a Topic (subscription) and perform an action on receive. I do not know if this is possible with CRM and cannot find a method of implementing it. I can read from a queue with the below; MessagingFactory factory = MessagingFactory.CreateFromConnectionString(QueueConnectionString); //Receiving a message MessageReceiver testQueueReceiver = factory.CreateMessageReceiver(QueueName);

Generate Mail Merge documents programatically on Microsoft Dynamics CRM 2013

核能气质少年 提交于 2019-12-23 02:48:19
问题 Is there any way to generate a mail merge document programatically via the Microsoft Dynamics CRM 2013? Trying to generate a mail merge document via a custom plugin in the back end. The merged document would then be sent to sharepoint. But... can't find a "Create Merged Document" feature in the CRM SDK, anyone know of a way of doing this? Thanks in advance! 回答1: This can't be done with Mail Merge documents insofar as the way they work with out of the box Dynamics CRM - you need MS Word

How do I change the default quick form for the CustomerId field in Dynamics CRM 2013?

寵の児 提交于 2019-12-23 01:12:37
问题 The CustomerId field that comprises both the Account and Contact records defaults to the Contact Quick Form when creating new records from a Lookup field of that type. How can I get the field to instead default to the Account Quick Form? 回答1: I encountered the same request from a client recently and after some unsuccessful searches we decided that we replace the field on the Form with Account field. Even though there is a Customer filed, there are 2 seperate fields to store Account and

How do I change the default quick form for the CustomerId field in Dynamics CRM 2013?

大憨熊 提交于 2019-12-23 01:12:20
问题 The CustomerId field that comprises both the Account and Contact records defaults to the Contact Quick Form when creating new records from a Lookup field of that type. How can I get the field to instead default to the Account Quick Form? 回答1: I encountered the same request from a client recently and after some unsuccessful searches we decided that we replace the field on the Form with Account field. Even though there is a Customer filed, there are 2 seperate fields to store Account and

FetchXML: get count of records based on a field of a linked entity

安稳与你 提交于 2019-12-22 12:08:12
问题 I have a scenario where i want to get the count of people from an Entity who have multiple location address marked as current address in other linked entity. <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true" aggregate="true"> <entity name="client"> <attribute name="clientid"/> <attribute name="name"/> <attribute name="createdon"/> <order attribute="name" descending="false"/> <link-entity name="locationadd" from="clientid" to="clientid" alias="aa"> <attribute

CRM Advanced Find all the icons in wrong place

谁都会走 提交于 2019-12-22 05:19:23
问题 I've just loaded up the advanced find and I cant click on half the icons/drop downs as they are all in the wrong place. It works fine on other servers and other machines. It appears as if its a CSS problem. Any Ideas 回答1: Several users reported this issue, the cause is not clear yet, however these are the suggested steps: 1) Try with another browser 2) Clean the browser cache 3) if CRM site is inside the Internet Explorer compatibility mode list remove it 4) if CRM site is not inside the

Microsoft Dynamics CRM 2013 Plugin - There is no active transaction error

落爺英雄遲暮 提交于 2019-12-21 03:55:17
问题 I have been struggling with a an error in a plugin for MS Dynamics CRM Online. (see below). It appears to happen at random times, but more likely to occur when the activity is high. I have verified and there are no try/catch-continue issues as the exception suggests. And that there are no member references to the OrganizationService Kept as this post suggests: https://community.dynamics.com/crm/f/117/t/138785.aspx Does anyone know what is causing the issue, or how to get around it?