microsoft-dynamics

Dynamics 365 V9 web resource get context

时光毁灭记忆、已成空白 提交于 2019-12-25 03:27:50
问题 I used this article to open a popup window when clicking on a button in the Lead form. In the onclick event of a button in this popup window, I want to set the value of a field in the parent form. How can I do this in V9, since xrm.page is deprecated? I would like to know the equivalent of window.parent.Xrm.Page.getAttribute("subject") The line above has a value of null in the lead form. EDIT: in the link posted by Arun in the comment down here, it is written that "although Xrm.Page is

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

LedgerJournalEngine and LedgerJournalCheckPost

拥有回忆 提交于 2019-12-25 02:15:14
问题 I am creating and posting Dynamics AX Ledger Journals from C#. I want to use the two helper classes the come with AX, LedgerJournalEngine and LedgerJournalCheckPost, to validate the journals I create. My questions are: 1.) How do you get a list of errors -> voucher from either of these classes or some other class? 2.) Can you simulate a post inside of a AX transaction and roll it back? 2-a.) If you roll back a posting in a transaction will AX be smart enough to reuse the voucher numbers that

MS Dynamics : Generate Refresh Token for OAuth

北战南征 提交于 2019-12-24 17:43:30
问题 I am using OData api of MS Dynamics. Here we are doing authentication using oauth I am taking reference from Ref : https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/developer-guide?view=dynamics-ce-odata-9 https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/connect-customer-engagement-web-services-using-oauth I am using Web Api so we followed below reference. https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/oauth-cross

Dynamics AX 2009: How to FTP from a batch job on an AOS

此生再无相见时 提交于 2019-12-24 17:18:40
问题 After quite a few searches for ways to FTP files in AX, I was happy to discover the WinInet class, which is more or less just a wrapper for the .DLL of the same name. I thought my problems were solved! I was not aware, however, that the class had a major Achilles heel -- it doesn't run in batch (on a server). Can anybody point me in the right direction? Specifically, I want to upload (FTP put) a file to another server in a server-run batch job (running as a service user with admin rights to

How to hide Assistant/Activities tab and Attach button in Notes section on Social Pane in Dynamics 365?

对着背影说爱祢 提交于 2019-12-24 14:06:09
问题 Has anyone had an experience modifying the Social Pane in Dynamics 365? Hiding the Assistant and Activities Tab Hiding the Attach button in the Notes Tab Googling shows unsupported way by accessing and hiding by DOM manipulation. Has tried Security roles, Ribbon Workbench but still tabs and Attach button are showing. The Notes form also cannot be customized. We tried also the Intelligence Configuration by following this: https://docs.microsoft.com/en-us/dynamics365/customer-engagement/sales

Trying to associate a dynamics portal user with a dynamics entity record through the portal

情到浓时终转凉″ 提交于 2019-12-24 11:44:52
问题 So I have a Dynamics 365 solution with a portal. I have created a custom entity to hold records relating to events. What I need to do is provide a way for users to log into the portal and register their interest for these events i.e associate their contact record with the relevant event record. I have seen that in CRM there is the option to associate the current user to an event when they create one through an insert entity form in the portal, but I can't figure out how to do it from a read

How do I add items in the sub menu options through c# - Dynamics CRM Online

一个人想着一个人 提交于 2019-12-24 10:56:05
问题 I have an existing opportunity with some menu items as shown in the below image. I want to programatically add the product using a windows forms application.The existing product was added using Dynamics Online Portal. But, I need to do the same via c#. After searching in the internet, I found out that we can achieve this by using Related Enitities & calling Service.Execute(Request). So first, I found out the entity names of the required.As I found the entity name for Motor Products, I used

Webservice on Navision / Microsoft Dynamics version 5… or else?

不羁岁月 提交于 2019-12-24 10:23:16
问题 Go bounty! This question has earned me a tumbleweed badge (7 views in 7 days!), which is somehow a strong confirmation that Navision has a very limited market share, which - I suspect - should be a confirmation Navision is neither all that great piece of software... But hey... that's what we got as a back-end, so I am ready to fight with this. :-O If there is some daring navision developer who is able to shed light onto this... the bounty is there for you! :) Original Post I have recently

How to fetch list of documents related to the entity record using CRM APIs?

﹥>﹥吖頭↗ 提交于 2019-12-24 09:24:18
问题 Following is the exact scenario in our CRM implementation. We have created a few custom entities, and enabled "Document Management" for them. Now, we need to get list of all documents (with their full URIs) for each entity record using CRM REST APIs. I tried to look into the entities, but not sure which entity to query in order to get list of documents (and their URIs) associated with an entity record. Our documents are getting stored over document library in the SharePoint site. Could anyone