Hi Make sure you select all the attendees in the lookup, you definitely can add multiple attendees Please see below
↧
Forum Post: RE: Add multiple attendees in Appointment
↧
Forum Post: RE: Opportunity "created on" date breaks after "Refresh from Dynamics 365"
Actually, we found the resolution: I had to change my options > format > English (United States).
↧
↧
Forum Post: RE: Opportunity "created on" date breaks after "Refresh from Dynamics 365"
Thanks for sharing the solution
↧
Forum Post: RE: Retrieving audit data via console app
This is how I pull the data - my Code is starting at the loop where you are getting the AuditDetails, you can remove the if statement that is looking for statuscode if you are looking at all/different attributes. foreach (var myDetail in auditDetailCollection.AuditDetails) { var detailType = myDetail.GetType(); if (detailType == typeof(AttributeAuditDetail)) { var attributeDetail = (AttributeAuditDetail)myDetail; foreach (KeyValuePair attribute in attributeDetail.NewValue.Attributes) { // get the optionset if it is a statuscode value if (attribute.Key == "statuscode") { OptionSetValue myVal = (OptionSetValue)attribute.Value; int myStatusCodeId = myVal.Value; // Do stuff with your New Value } } foreach (KeyValuePair attribute in attributeDetail.OldValue.Attributes) { // get the optionset if it is a statuscode value if (attribute.Key == "statuscode") { OptionSetValue myVal = (OptionSetValue)attribute.Value; int myStatusCodeId = myVal.Value; // Do Stuff with your Old Value } } } }
↧
Forum Post: view is not available in ms crm custom portal online
Hi All, i am facing issue with entity list on MS CRM Custom portal. i am working last 2 months, but suddenly portal entity list is not showing. in my portal i am using two entity lists. account and case. for debug purpose i created new list with contacts, this is also getting same view is not available. Thanks CM
↧
↧
Forum Post: RE: Unable to edit calculated field
Any update on this issue? We're facing the same issue.
↧
Forum Post: RE: Add multiple attendees in Appointment
Hi, First add all the required attendees (both the values) in the Form assistant section and then click on add . Both the values will be added.
↧
Forum Post: RE: Scheduled Run of a Dynamics CRM plugin
Hi Kokulan, Thanks for the response, i will try this and let you know how it went.
↧
Forum Post: RE: Metadata contains a reference that cannot be resolved: 'https://adfs.hostname.com/adfs/services/trust/mex'.
Thanks for the response. Which XrmToolBox plugin do I need to use? Thanks again.
↧
↧
Forum Post: RE: one user get long delay on loading / opening email form
Use diagnostic page to capture network performance. http:// /tools/diagnostics/diag.aspx blogs .msdn.microsoft.com/.../using-the-crm-diagnostics-page-to-capture-network-performance Check performance parameter and compare among 2 users
↧
Forum Post: Problem creating inactive record of a custom entity
Hi! I'm trying to create a new record of a custom entity from a plugin, setting in the new entity object the state and statuscode in this way: var customEntity = new Entity("new_customentity") { ["new_name"] = chequePostImage.GetAttributeValue ("gval_codcheque"), ["new_cheque"] = chequeRef, ["new_chequeid"] = chequeRef.Id.ToString(), ["statecode"] = new OptionSetValue(1), ["statuscode"] = new OptionSetValue(2) }; _service.Create(customEntity); But CRM throw me this error: "2 is not a valid status code for state code new_customentityState.Active on new_customentity with Id a9fc4065-aa41-e911-a955-000d3ac02db8." I know that I can update the record just after create it, but the plugin must be a sync process and call the server twice (first for create and then for update) may give me low performance. I remember this was posible in previous versions, and I'm not sure if I'm doing something diferent or it can't be done anymore Any suggestions? Best Regards!
↧
Blog Post: Microsoft Dynamics Partner Roundup: ISV growth; SMB partnership; D365 Talent add-in; Payments integration
In this week's Microsoft Dynamics partner news roundup: ClickLearn makes the FT 1000 third annual list of Europe's fastest-growing companies Crayon Software Experts and TechWise Group announce strategic technology partnership Virsera announces the SpurGo Dynamics add-in for Dynamics 365 Amicis Solutions new payments solution now available in the Microsoft AppSource ClickLearn makes the FT 1000 third annual list of Europe’s fastest-growing companies Microsoft Gold Partner Clicklearn , which is based in Denmark, has made the third annual FT 1000 annual list of the fastest-growing companies in Europe, coming in at number 136. ClickLearn automates the process of creating, continuously updating and deploying documentation, walkthroughs, and e-learning inside D365. The FT 1000 lists the European companies that achieved the highest compound annual growth rate in revenue between 2014 and 2017. The FT 1000 is again dominated by technology sector, which accounts for 149 of the businesses (without counting the fintech and ecommerce categories), according to FT. In addition, ClickLearn is ranked: 16 of the 1.000 measured on absolute growth 1st of the 6 Danish companies on the list 2nd of the 33 Scandinavian companies on the list 18th of the 149 companies in the technology sector on the list Crayon Software Experts and TechWise Group announce strategic technology partnership .... Read More
↧
Forum Post: Finding a subset of data in an Advanced Find
Hi, We have products associated to contacts and have a requirement to find all contacts that only have a certain product associated. The data would look a little like this: Contact Product A 1 A 2 B 1 So, as you can see, Contact A has two products but Contact B only has one. We would like to be able to produce an advanced find that brings back contacts that have Product 1 but NOT Product 2, therefore the result would be Contact B only. Is this possible? Thanks! Jon.
↧
↧
Forum Post: RE: Problem creating inactive record of a custom entity
Hello, Try to use ["statuscode"] = new OptionSetValue(-1) instead of ["statuscode"] = new OptionSetValue(2)
↧
Forum Post: RE: Problem creating inactive record of a custom entity
1. Add some flag field to entity and import it along with entity - it will mean that record should be deactivated after creation. 2. Add Real-Time workflow that will trigger on Create of record, check flag field from step 1 and then deactivate reco
↧
Forum Post: RE: How to add "MSCRMFETCH" in Embedded Connection Visual studio 2017?
Hello, The latest supported version of VS is 2015.
↧
Forum Post: MS Dynamics CRM Training
When will Microsoft provide Administrator training on their CRM? Thank goodness for YouTube third-party user training.
↧
↧
Forum Post: how to create an entity from an xml file in crm 365
I have an xml of a CRM 3.0 personal entity (with all its fields, etc), what I want to do an import into the Dynamics 365 CRM. As far as I was reading, there is not an import, but an intermediate process of coding (C #) that reads the entity and its fields, and inserts them in that way to the Dynamics 365 CRM Could someone support me with the process?
↧
Forum Post: RE: MS Dynamics CRM Training
Hi Have a look at the following courses : docs.microsoft.com/.../admin-guide docs.microsoft.com/.../administrating-power-platform-subscriptions If you have Dynamics Learning Portal access, you will have access to courses like the following and more Implementing Dynamics 365 for Sales, Course Number XELC2IMP Implementing Dynamics 365 for Customer Service, Course Number ECECSI2
↧
Forum Post: RE: how to create an entity from an xml file in crm 365
How many entities you have? is it just one entity or more ? Are you planning to import data as well?
↧