dynamics-crm

Unable to connect to Microsoft Dynamics CRM with PHP and Curl

送分小仙女□ 提交于 2021-02-08 05:06:32
问题 I am trying to use PHP and CURL to connect to Microsoft Dynamics API so I can read client data from the CRM. The API guide can be found here: https://msdn.microsoft.com/en-gb/library/mt593051.aspx I've been into the Azure portal and set up a new application, and it gives me the credentials to use (client id, secret, etc.) and the url end points. Using these credentials I am able to successfully connect to the CRM and retrieve a bearer access token, but I am unable to get any further. When I

System.Windows.Forms.WebBrowser wait until page has been fully loaded

空扰寡人 提交于 2021-02-05 08:13:28
问题 I have been trying a lot of different solutions with wait and async . Nothing seems to work. I was not able to find solution that actually fully waits until page has been fully loaded. All codes are waiting some time but not until page has been loaded and I am getting an error on next process. How I can set for example code into wait mode until Document.GetElementById("quickFind_text_0") element has been found on page? Here is my code: private void button7_Click(object sender, EventArgs e) {

Microsoft dynamics Mediaset Datatype and SSRS

只愿长相守 提交于 2021-01-29 21:48:56
问题 I have a table called Item in Microsot Dynamics (NAV). One of the requirement is to display a picture that is attached to the item. The SQL datatype of this field is "uniqueidentifier". However, when looking at the development environment for dynamics, I see the following: How do I retrieve and show this image in an SSRS report please? 回答1: For any one looking at this. Navision Dynamics stores images as Mediasets. These references are stored in the [Tenant Media Set] table and the actual

SQL Query get most recent activiy per account (efficient query)

隐身守侯 提交于 2021-01-29 20:09:16
问题 I use MS SQL Server 2016 and try to query the MS Dynamics 2016 on-premise DB efficiently. You don't need special knowledge about Dynamics to answer my problem because it's rather an SQL but a CRM problem. Suppose you have entities FilteredAccounts and FilteredActivities (that's the name in Dynamics View) FilteredActivites have the following columns: accountid name FilteredActivites have the following columns: activityid actualend [DATETIME] regardingobjectid (referring to account) statecode

Refresh page in Dynamics crm after flow run

你说的曾经没有我的故事 提交于 2021-01-29 19:45:18
问题 I want to know if there is any idea to refresh Dynamics crm page after running a Power Automate (Flow). The flow updated fields in the quote entity and I want to refresh the page after the Update. 回答1: How is your flow been Trigerred? As Arun said there are 2 different systems been used here. But let me try another Idea. How about you add javascript and through Javascript trigger your flow, you can have http request to trigger a flow and it is not a big deal. Now add a promise in your Js

Can i get lead gen data at linked in using webhooks URL and C# likd facebook?

不想你离开。 提交于 2021-01-29 16:50:43
问题 i have an application in linked in and have page on it and Campaign manager, i want to send leads data automatically to Microsoft Dynamics CRM without downloading the leads,i want to make this cycle dynamics. i do not know where can i add My Webhooks URL to can send leads information to it. 回答1: If I understand your req, you have an external system (non crm) and from this system you wish to get information from crm and perform some operation in crm. I would suggest you go with Dynamics 365

Entity cannot be found error in Dynamics 365 for Outlook App

梦想的初衷 提交于 2021-01-29 08:54:11
问题 We receive the following error in the Dynamics 365 for Outlook App: The entity "{0}" cannot be found. Specify a valid query, and try again. This appears to be associated with custom code. 回答1: It turns out this was happening because of a call to Xrm.WebApi.retrieveMultipleRecords . It appears as though in the full web client if you pass in the entity set name (ex. 'accounts') instead of the entity logical name as documented (ex. 'account') as the first parameter, then the web client just

How to populate Dynamics 365 lookups with text value from Azure Logic App?

半腔热情 提交于 2021-01-29 08:20:48
问题 I am creating an Azure Logic app which takes data from an external source and populates Dynamics 365. In the Dynamics 365 entity, I have 4 lookup fields which I need to populate. But from the external source, I am getting data in text format, which means I need to search value for lookup fields by text instead of Guid. I am doing this by creating an Azure function but want to know if there is any possibility to achieve this with no code customisation? External data source can only send text

Could not load file or assembly 'Microsoft.IdentityModel.Clients.ActiveDirectory' in CRM Plugin

牧云@^-^@ 提交于 2021-01-29 07:44:23
问题 I am developing a plugin that uses ADAL nuget package. My plugin assembly throws an exception when I execute due to missing Microsoft.IdentityModel.Clients.ActiveDirectory dll. The assembly is referencing and merged properly in the merged dll and this is what I see in ILSpy tool: Here is the list of references in my plugin assembly: Any ideas how to fix this issue? After i tried multiple tools to merge my dlls using ILMerge and ILRepack i am facing the same issue. How can i find out Clients

Getting empty pdf attachments when trying to create “activitymimeattachment”

非 Y 不嫁゛ 提交于 2021-01-29 07:04:01
问题 I want to attach pdf from url into CRM "activitymimeattachment". Everything works fine but im getting empty pdf attachments (even the size is the same as original pdf). Could it be some problem with Encoding or converting? Maybe somebody could help me with this? I see that email is created with attachment which is empty, but the size is the same as for original pdf. Entity attachment = new Entity("activitymimeattachment"); attachment["subject"] = "Attachment"; string fileName = "Invoice.pdf";