dynamics-crm-2011

MS Dynamics: retrieve the schema of entities to use it in SOAP?

大城市里の小女人 提交于 2019-12-13 05:09:14
问题 I'm trying to add some entities via a SOAP client, to MS Dynamics (online). My client is not a Microsoft client. Do you know a way to retrieve the schema of Entities like Account, Prospect etc... I would like to know how . I really need to know it , for integration with different installations of Dynamics. I'd like to know the fields and when to put a String a Boolean etc. I use a Demo instance of MS CRM online, from scratch, I did not change anything Thanks!! 回答1: You can get metadata about

Unable to get property 'ClientVariables' of undefined or null reference in CRM 2013

纵饮孤独 提交于 2019-12-13 05:03:20
问题 I have a task to upgrade the CRM 4.0 to CRM 2013 and CRM have too much customization. i have change the code and then upgrade to CRM 2011 then apply RU 16 on CRM 2011 then get the data base and import in the CRM 2013. Now in CRM 2013 i am facing the following error on the Sales Order. and form is not loading the data and showing the Error on Page. i have seen that this error is due to the Ribbon button Code. enter code here Microsoft Dynamics CRM Error Report Contents <CrmScriptErrorReport>

Is it possible in Dynamics CRM to run an SQL query like an advanced find and include selection boxes?

旧时模样 提交于 2019-12-13 04:39:34
问题 In Dynamics CRM-2011 the results of an advanced find are presented as a grid of records, each with a checkbox to select the record for further appropriate actions. Is it possible to use an SQL-based query to achieve a similar result? I have implemented a data quality scheme as a business-rules entity, each rule containing the text of an SQL query for reporting records that fail the particular rule. There is an exceptions report that can run for any selected rule(s) and returns the list of

How do I remove Dynamics CRM sitemap customizations?

不羁的心 提交于 2019-12-13 04:32:24
问题 I've got a managed plugin that I can install / uninstall from Microsoft Dynamics CRM. Within the plugin's customizations.xml I have included a small section of Sitemap customizations, particularly an additional group and added to the sidenav area. The issue that I'm running into, however, is that the sitemap customizations do not get removed when I uninstall the plugin. The additional group remains as part of the sidenav area, though now it causes sitemap errors because the necessary

Crm 2011 - How to set a default form depending on attribute value (without using Javascript)?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-13 04:29:53
问题 I have a little requirement that is making me crazy: We have 8 different forms for the Contact Entity. We also have a pick list with 8 options. The idea is that based on the option selected we could open that Contact record showing by default a particular form WITHOUT USING JAVASCRIPT in order to avoid performance problems (each record has to be loaded twice). Example: Forms: Form 1 Form 2 Form 3 Pick List Values - Default Form: Form 1 Form 2 Form 3 If Form 3(pick list value) is selected then

Connect MS Dynamics CRM 2011 from java

我与影子孤独终老i 提交于 2019-12-13 04:15:50
问题 I am trying to connect to MS Dynamics CRM 2011 from Java. After lots of searching I came across one link in MS forums which gives a code snippet to invoke MS Dynamics CRM 2011 WS from Java. Consuming CRM REST Service from Java However, it does not provide much details other than an account creation step. Using this code snippet I am able to create accounts. However, I want to also use the same REST web service to retrieve accounts, create new case request, add case request to account, etc.

CRM 2011 - unable to connect to database after installing Active Directory

本秂侑毒 提交于 2019-12-13 02:54:13
问题 I've been given a VM for development purposes, in which is installed Windows 2008R2, CRM 2011, SQL Server, etc. Prior to me being given the project, the VM was being used inhouse, validating to the company's AD server. Since I need to use the VM off-site, I have run "dcpromo" in order to install Active Directory etc. in the VM. As you may have guessed, upon doing this, nothing can now connect to SQL Server using Windows Authentication, because users are now AD users, with different IDs (at

Creating URL string for call to OrganizationData.svc using JavaScript

心已入冬 提交于 2019-12-13 02:47:55
问题 Currently, I have two different methods to decide which version of CRM that my JS runs on. The addresses are similar but differ still, depending on whether it's on-line or on-premise. I've tried to integrate them but it's still depending on a variable as the code below shows. What would be a neater solution (one that will pick the right URL to the service for organization data)? var isOnLine = true; var organizationName = Xrm.Page.context.getOrgUniqueName(); var organizationUrl = "http" +

The report cannot be displayed. (rsProcessingAborted)

白昼怎懂夜的黑 提交于 2019-12-13 02:38:59
问题 I am using Dynamics CRM 2011 on premise. Reports were working fine a few days ago. Today they don't. I am getting this error: " The report cannot be displayed. (rsProcessingAborted) " I just run a report with warning level tracing on and this was logged: [2013-07-09 14:10:50.099] Process:CrmAsyncService |Organization:00000000-0000-0000-0000-000000000000 |Thread: 102 |Category: Sandbox.LoadBalancer |User: 00000000-0000-0000-0000-000000000000 |Level: Warning |ReqId: 0792ea86-fee7-4f86-b38a

Getting weird behavior when retrieving data from Microsoft CRM using LINQ

…衆ロ難τιáo~ 提交于 2019-12-13 02:14:09
问题 I'm having this problem accessing the Contact entity using LINQ. I have the 2 functions below. If I ran the 1st function and then call the 2nd one, I seemed to be missing a lot of fields in the 2nd query. Like firstname and lastname are not showing up. They just shows up as null values. If I ran the 2nd function on its own, I am getting the right data. The only fields that shows up correctly in both runs are Id, ContactId and new_username. If I ran the 2nd function on its own, I am getting