crm

How To Filter 1:N Add Existing Lookup Dynamics CRM 2013?

别说谁变了你拦得住时间么 提交于 2019-12-12 01:44:33
问题 Do you know how can we filter 1:N "Add Existing Lookup" at Dynamics CRM 2013 ? We tried this part, but it doesnt work anymore in CRM 2013: var lookupItems = LookupObjects(null, "multi", gridTypeCode, 0, null, "", null, null, null, null, null, null, viewId, [customView]); 回答1: You should change your LookupObjects function to LookupObjectsWithCallback function: LookupObjectsWithCallback(callbackReference, null, "multi", gridTypeCode, 0, null, "", null, null, null, null, null, null, viewId,

Subgrid: Restrict user to select only one record

ぐ巨炮叔叔 提交于 2019-12-11 23:14:00
问题 i have a subgrid on a custom entity form where i am showing related records for Case Entity. I want to restrict user to select only one record. How can i achieve this using javascript in crm 2011 回答1: Sometimes unsupported should be supported!!! Especially when one needs to go the whole distance to implement such trivial UI requests. The Subgird has all these nice methods that you can use that for some reason Microsoft insist on not exposing as SDK. That’s silly. I would also look for a

C# CRM QueryExpression LinkEntity join via multiple field

杀马特。学长 韩版系。学妹 提交于 2019-12-11 17:51:11
问题 Is it possible to join multiple fields dynamically in CRM? What I mean is something like this in SQL select field1, field2, ..., fieldN from ServiceAppointment inner join bh_product on bh_product.bh_contract = ServiceAppointment.bh_product.bh_contract and bh_product.serviceid = ServiceAppointment.serviceid I'm trying to come-up with something above using queryexpression but I'm not getting the desired behavior I want and I end having LOTS of records than expected. I can do this if I KNOW

Remove note's autosave functionality by adding other entity's notes on form in CRM 2011

谁说我不能喝 提交于 2019-12-11 16:49:22
问题 In CRM 2011, notes get automatically created and attached to main record on lost focus event. Requirement is to remove this auto save functionality. Only till main form is open user should be able to edit notes. And newly added notes should only get saved once main form is saved. For example, if user add one note and closes the browser or do not save the main form, then that note should not get attached to main record, new note should get discarded. I was thinking following solution: create

Dynamic 365 CRM openEntityForm or windows.open with html as parameter

帅比萌擦擦* 提交于 2019-12-11 15:46:39
问题 I have email template which I 'parse' and send (from current Lead form) as a parameter to new email form (from JavaScript). var parameters = {}; parameters["subject"] = 'Subject name'; parameters["description"] = '<font face="Tahoma, Verdana, Arial" size=2 style="display:inline;"><br></font>'; Xrm.Utility.openEntityForm("email", null, parameters); or let serverUrl = "https://companyname.crm4.dynamics.com"; let extraqs = "subject=Subject name"; extraqs += '&description=<font face="Tahoma,

Integration from CRM to Team Foundation Server 2018

跟風遠走 提交于 2019-12-11 15:33:33
问题 We have CRM where customers create tickets (change requests, incidents...). From developer team side we have Team Foundation Server 2018. To speed up process we would like to automatize entire thing. So, when customer create ticket, to automatic create TFS User Story. We developed code to take, every time when ticket is created, data and put into JSON file. (will attach code in Github and share a link) But now, I just need info, is someone have an idea, how JSON file should looks like which

How can I Update fullname in COntact in CRM

做~自己de王妃 提交于 2019-12-11 12:40:21
问题 I want format of fullname like Title + First Name + Last Name.but this type of format is not avalilable in System settings.so,I just want to update fullname not first name or last name.How can I achieve this requirements. 回答1: The answer is you can't change the format of full name in the database aside from the formats CRM defines as options. But, you do have two options: Create a Select plugin that updates the value of the full name on the entity (if you're using early bound, the property

Dynamics CRM error: “The object cannot be updated because it is read-only”

杀马特。学长 韩版系。学妹 提交于 2019-12-11 12:27:59
问题 I've got an instance of Dynamics CRM 4.0 with some weird errors. If I close a Case and then try to reactivate it I get the error " The object cannot be updated because it is read-only ". This is simple, built-in CRM functionality that works fine on other instances. I get the same error if I try to convert a Quote to an Order - I believe it's trying to update the Quote, which has been "closed" by then. What's wrong and how do I fix it? MSCRM Error Report: --------------------------------------

CRM 2011 Ribbon bar Missing after applying update Rollup 14 in IE not the chrome or Firefox?

梦想与她 提交于 2019-12-11 11:23:07
问题 When reviewing issue further, I have found out below solution: Log in to CRM as an administrator. Go to Settings > Administration. Click System Settings. On the “Customizations” tab, uncheck Load pages in the most recent version of Internet Explorer. Even this one is not working for me. I am getting below error in page load event in IE not the chrome or Firefox SCRIPT5: Access is denied. PageLoader.js, line 1 character 1226 I am stuck with as my production release on Monday. Any help is

Dynamic CRM 2013 Plugin Event execution pipeline and the 2 Minutes Time out

前提是你 提交于 2019-12-11 10:53:31
问题 I have couple questions please. 1- When plugin A triggers on an event and caused another plugin B to trigger, does Plugin B executes in the same Event execution pipeline as plugin A ? 2- If the above is true and plugin A and Plugin B executes in the same Event execution pipeline do they both have 2 minutes to complete (since the maximum execution time of a plugin in dynamic CRM is 2 minutes) or each one of them has 2 minutes to complete which makes the total execution time allowed for both of