Questions tagged [dynamics-crm]

Microsoft Dynamics CRM is a multilingual Customer Relationship Management software package developed by Microsoft. It has built in support for Sales, Marketing and Service. It can be used as an xRM platform.

Useful resources


Version-specific tags


Other related tags

7813 questions
2
votes
1 answer

Is it possible to control the size of a lookup dialog? - CRM 2011 online

Is there any way to alter the default display size of a lookup dialog? Users are constantly having to re-size. Probably can't implement an unsupported method but would like to know about either. I've looked around but haven't found anything of use…
keerz
  • 717
  • 1
  • 6
  • 21
2
votes
1 answer

using 'GetGlobalContext' in javascript web resource

I'm creating a custom button in the MS CRM ribbon that create a record in an entity, (i'm using odata), this button lunch a JavaScript function that use 'GetGlobalContext' method to get the context, im facing the below problem: The value of the…
Joe
  • 63
  • 1
  • 7
2
votes
1 answer

Line-break in ToolTipTitle and ToolTipDescription of ribbon

Is there any way to break a line in ToolTipTitle and ToolTipDescription of a MS CRM 2011 Ribbon? The code below puts a line break just in the title, but not in the tooltip texts (texts of tooltip are “onetwo” using this code):
2
votes
1 answer

Replacement for 'https://live.azure.com/'?

I am trying to set up the customer and partner portals for CRM 2011 and am having a really hard time. I followed the documentation for the portals (the ones from pinpoint, default portals that come with the Contoso domain) but when I get to the part…
Tudor Hofnar
  • 267
  • 2
  • 9
  • 20
2
votes
1 answer

Cannot see in Object Browser a Referenced DLL?

I have an application to which I've added references to Microsoft.Xrm.Sdk and Microsoft.Xrm.Sdk.Workflow...but when I view Object Browser they don't appear anywhere in the Object Browser. They used to, but now they don't. Any ideas on why?
Dave Mackey
  • 4,306
  • 21
  • 78
  • 136
2
votes
1 answer

Setting document.title not working in Dynamics CRM 2011 JScript

I am running a piece of JScript code in the OnLoad event on an MS Dynamics CRM 2011 form, and wish to set the document title (i.e what's displayed in the IE window/tab for this page) through the script. I have made the following call: document.title…
Stephen Holt
  • 2,360
  • 4
  • 26
  • 34
2
votes
1 answer

Error in Workflow Designer XAML File

I have a XAML file I exported from Microsoft Dynamics CRM 2011. When I open it in VS 2010 I get the following error: Workflow Designer encountered problems with your document Please check the document for invalid content, namespaces, references or…
Dave Mackey
  • 4,306
  • 21
  • 78
  • 136
2
votes
1 answer

dynamics crm 4.0 lookup field onload() query

I have an account entity with a lookup field schoolLookupId which refers back to a custom entity new_schools. The lookup field only display the name of the school. What I would like to be able to do using the onload() event handler of the account…
John D
  • 639
  • 1
  • 10
  • 20
2
votes
1 answer

Get updated records from Dynamics CRM 2011 via SOAP

We're writing a web-frontend for at Dynamics CRM 2011 system, using PHP and SOAP (NuSOAP). In the process of doing so we need to retrieve entities that has been updated since our last import. I've looked around the existing CRM Frontend, to see if…
2
votes
0 answers

What kind of Dynamics CRM 2011 Online authentication needs to use deploy in godaddy shared server

I am having an issue when I tried to deploy an application which communicates with Dynamics CRM 2011 online in godaddy shared server. I don't have any issue when I run in my local, I am using wsdlbaseproxies online code provided in…
2
votes
1 answer

How to access 1:N relationship entities in a Microsoft CRM 2011 plugin?

I have a custom Board entity with a 1:N relationship to a custom Board Seat entity. I have a post-update plugin on the Board entity that tries to loop through all the Board Seats related to the Board being updated. I've tried both a pre and post…
Mike B
  • 5,390
  • 2
  • 23
  • 45
2
votes
3 answers

MS CRM - Pre Create plugin doesn't change property value

I made a plugin for email entity and registered it on Pre Create event (child pipeline). Plugin is as simple as possible: public class AddDescription : IPlugin { public void Execute(IPluginExecutionContext context) { DynamicEntity di…
grega g
  • 1,079
  • 1
  • 12
  • 25
2
votes
2 answers

Add Custom Value when Saving an Entity in CRM 2011

From the MSDN article on the JS Xrm object getDataXml Returns a string representing the XML that will be sent to the server when the record is saved. Only data in fields that have changed are sent to the server.
glosrob
  • 6,631
  • 4
  • 43
  • 73
2
votes
1 answer

CRM 4.0 Throwing Exception during Publish

I am trying to publish the Account entity which I imported from another tenant and am receiving the following message in the trace logs: Error: Object reference not set to an instance of an object. Error Message: Object reference not set to an…
Eric
  • 391
  • 1
  • 8
2
votes
1 answer

Data pre-filtering on SQL based Report

I made a SQL-based report in Visual Studio 2008 and uploaded it to the CRM. I indicated that you can only run it on "Forms for related record types". I thought this would generate 1 report for the current record you are in. This isn't the case. It…