dynamics-crm-2011

User-friendly tool for editing MS CRM customization xml

£可爱£侵袭症+ 提交于 2019-12-11 06:23:23
问题 I need to make a lot of modifications in MS CRM customization. Some of these customizations could be made in web-interface, dome of them need to be hacked in plain customization XML file. Even more, I'm not the one who is making changes: so I will be required to merge these changes done by one person in web-interface and by another one in plane XML. But MS CRM automatically produces quite big and fairly readable customization file where it's impossible to understand which changes belongs to

Where to download the previous SDK for CRM 2011 v 5.0.12?

陌路散爱 提交于 2019-12-11 05:43:09
问题 Currently searching for CRM 2011 SDK always seems to yield this download page, which is the most current version of the SDK (As of this post, its version 5.0.13 for rollup 12). We are going to be installing rollup 11, on our prod boxes this month. I'd like to get the previous version of the SDK, but have been unable to find it. Does anyone happen to have a link to the 5.0.12 version of the SDK? 回答1: I had to downgrade recently and used this link. And I'm not sure if a newer version is

CRM 2011 Maximum depth reached

馋奶兔 提交于 2019-12-11 05:25:10
问题 I have a transaction in CRM and it is reaching its maximum depth (8), it is a very complex chain of plug-ins and the business requires this operation in this way. Is it a good option to change the maximum depth from (8) to (16) because our business requires or there is something that we should not do because there is a lot of logic being reached. I asking this because Microsoft says this restriction is to detect infinite loops. I want to ask Microsoft this, but this person that Microsoft has

CRM Dynamics 2013 How to pass current logged as the record owner

岁酱吖の 提交于 2019-12-11 04:44:56
问题 I have a scenario in CRM where I created an MVC application that uploads a excel file, does some validation on the file, once the records are validated,it creates the new records in CRM, I need to know how can I handles the current logged in user in CRM so that that specific user performs the create and is then owner the records. I am currently using a CRM User which I created in AD, but I need this to be the logged in user who runs the process/app. Currently that CRM User owns all records

Dynamics CRM 2011 - Does each plugin that related to a different entity have to have it's own assembly?

偶尔善良 提交于 2019-12-11 04:33:42
问题 I am creating a series of related plugins. Each plugin is for a different entity. Does each plugin have to have it's own assembly? I'm using Visual Studio and I created a second project within the same solution but I can't see the new step in registration tool. Thanks 回答1: It can do, but doesn't have to. That is pretty much your design decision. Consider if you had several classes all implementing IPlugin public class MyFirstPlugin : IPlugin { //implemented as per usual } public class

How to set a default form from sub-grid

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 04:24:06
问题 I've created a sub-grid in Contacts Entity to show related lead records for the contact. Due to the client requirement, We also have the functionality to create a new lead from contact entity through this sub-grid. Everything is fine till here. We have two lead forms created by each product line. Say Home Furniture Lead form and Office Furniture Lead form. I'm looking for an ability to set the Home furniture lead form as a default form to open from the sub-grid in contacts entity. When the

How to retieve CRM Guid using LINQ and joins?

会有一股神秘感。 提交于 2019-12-11 04:05:51
问题 We are using CRM 2011. We have Contracts with Entity Reference to Product and each Product has an Entity Reference to a Subject. Given a Contract Guid, I need to retrieve the Subject Guid. I am a beginner at LINQ but I coded: var subject = from s in context.SubjectSet join product in context.ProductSet on s.Id equals product.SubjectId.Id join contract in context.ContractSet on product.Id equals contract.ce_ProductId.Id where contract.Id == gContractId select s; foreach (var s in subject) {

how to get value/text from a OptionSet?

左心房为你撑大大i 提交于 2019-12-11 03:55:53
问题 I am creating a web resource which will populate a HTML table with tasks I was trying to get the PriorityCode of a tasks. But I don't know how to get value/text from a OptionSet . This is a screen shot : Thanks 回答1: You have query metadata, see this various methods to do that: http://crmdude.wordpress.com/2009/02/04/performing-a-javascript-web-service-call-to-the-metadata-service/ http://guruprasadcrm.blogspot.com.au/2011/07/retrieving-optionset-lable-data-using.html http://mileyja.blogspot

Calling a JS function from HTML IFRAME (both web resources)

风格不统一 提交于 2019-12-11 03:42:38
问题 I've uploaded two web resources, a.HTML and b.JS . In the HTML document I have a section where a script is executed (and it works as supposed to) upload loading into the IFRAME on my form. Now, because of the size of the code, I feel the need to refactor it and I'd like to move out some of the methods from the script tag of my HTML web resource to a separate JS web resource. At the first step I've set up the separate JS web resource as follows. function test() { alert("Success."); } From the

Why does LinkEntity.AddLink initialize the LinkFromEntityName with it's own, LinkFromEntityName, rather than it's LinkToEntityName?

邮差的信 提交于 2019-12-11 03:37:38
问题 I'm trying to generate this basic SQL statement using Query Expressions: SELECT * FROM contact INNER JOIN businessunit on contact.businessunitid = businessunit.businessunitid INNER JOIN new_example on businessunit.new_exampleid = new_example.new_exampleid Using this Query Expression Test: var query = new QueryExpression("contact"); var bu = query.AddLink("businessunit", "businessunitid", "businessunitid"); var buChildLink = bu.AddLink("new_example", "new_exampleid", "new_exampleid"); Assert