Quantcast
Channel: Microsoft Dynamics CRM
Viewing all 137182 articles
Browse latest View live

Forum Post: RE: Unable to filter Option Set values in Dynamics 365 Editable Grid

$
0
0
Hi, You can try following code to get or remove options from an option set fields: //To get options var options = Xrm.Page.getAttribute('fieldname').getOptions(); //To Remove Option Xrm.Page.getControl('fieldname').removeOption(intValue); Hope this helps ! :)

Forum Post: RE: FullText Search. Turn off for some tables

$
0
0
Hi, if you are on premise you can, but it kind of unsupported by Microsoft as your are taking the risk to change something in the SQL Database. That said here you go: debajmecrm.com/.../dynamics-crm-full-text-search-global-search

Forum Post: RE: Field Service Dashboard

$
0
0
Hi, maybe you system Admin changed the sitemap our Dynamics 365. Anonther way to acces it is to go to any Dashboard and and on the upper right you will have a drop down list next the your Dashbord Title where you will find the all list of your Dashborads.

Forum Post: RE: Dynamics 365 App for Outlook Not logging in On-Premise

$
0
0
Hey there, does anybody have some news about a fix?

Forum Post: Call Dynamics 365 Web API without oAuth Authentication

$
0
0
Hei all, I struggle with the integration of a legacy app to Dynamics 365 on-premise. The Software can only use Basic Authentication or NTLM Authentication against a Web API. The CRM is IFD hosted. Can we use Basic Authentication instead of oAuth in an IFD hosted enviroment? I tried to call the Web API with SOAP UI over Basic Authentication but I get everytime a redirect to the ADFS.

Forum Post: RE: [ADFS] [CLAIMS] could not establish trust relationship for the ssl/tls secure channel

$
0
0
The Problem was due to missing DNS Entries in the Hostenviroment

Forum Post: RE: Unable to filter Option Set values in Dynamics 365 Editable Grid

$
0
0
Thanks Preeti! Above code will work in Form Level but it is not working as expected in editable grid Below is the function which I am calling in Editable Grid. filterOptionSet1: function (executionContext) { var fields = null; if (executionContext && executionContext.getFormContext() && executionContext.getFormContext().data && executionContext.getFormContext().data.entity && executionContext.getFormContext().data.entity.attributes) { fields = executionContext.getFormContext().data.entity.attributes; } if (fields == null) return; if (fields.getByName("cpt_optionset1")) { var opValue = fields.getByName("cpt_optionset1").getValue(); fields.getByName("cpt_optionset1").controls.get(0).clearOptions(); //Getting Error on this line } } Please let me know what I am missing here. Thanks in Advance.

Forum Post: RE: recalculate Rollup Fields automatically

$
0
0
Actually i am also facing the same Issue. Can you please suggest how you resolved this issue

Forum Post: RE: angular 2 / angular 4 in webresources

$
0
0
This build process is the main reason I stick with AngularJS and why I'm looking into VueJS. However, I did find a blog using typescript that has a buildprocess using webpack. It should be possible to add angular to that build process. medium.com/.../using-typescript-in-dynamics-365-499a0e56b143

Forum Post: error when connecting CRM organization in CRM outlook client

$
0
0
Hi, I am getting below error when connecting CRM organization in CRM outlook client. I am using CRM 2016 SP1 on premises and our exchange server is office 365. But few users are able to connect. I am also able to connect before but I do not know , I am getting below error. I reinstalled CRM client but same error. Kindly provide solution for fixing this error.

Forum Post: RE: Dyn365 Portals - Liquid Display Optionsets on Web Page Templates

$
0
0
{% assign Contact = entities.contact['D7A1E5B9-88DF-E311-B8E5-6C3BE5A8B200'] %} {% if Contact %} {{ Contact.fullname }} ({{ Contact.gendercode.label }}) ({{ Contact.gendercode.value }}) {% endif %}

Forum Post: RE: Show/Hide fields from Entify forms depending on status record

$
0
0
hi Franck, You can write your Custom JavaScript/query code on the Entity Form. Check following link for cutom javascripts docs.microsoft.com/.../add-custom-javascript Thanks Arun Singh Negi

Forum Post: RE: Microsoft portals

$
0
0
Hi, I'm also trying to implement Google Tag Manager. However, I bump into the issue i'm not able to implement script in the section. The printscreen above is about implementing script in the header template (which is part of the ). So that doesn't help me. Any ideas? Did you get it to work mdell3072?

Forum Post: RE: Automated Process within CRM

$
0
0
Hi Blouflash, Out of the box it is not possible , you will have to create a custom workflow for this : community.dynamics.com/.../custom-workflow-activity-add-to-marketing-list mark my suggestion as verified if helpful to close the thread.

Forum Post: Why Plugin not working when I stopped profiling the step in plugin registration tool?

$
0
0
In plugin registration tool, I have:- 1. Registered an assembly (dll of my plugin assembly) 2. Registered a step 3. Started profiling on this step 4. Attached my plugin to Plugin registration tool( using Attach to Process in visual studio) 5. Started debugging, My plugin worked as expected. But when I stopped profiling, it started giving me error as below:- And the plug-in trace log is as follows:- Unhandled Exception: System.Runtime.Serialization.SerializationException: Element ' schemas.datacontract.org/.../System.Collections.Generic:value ' contains data from a type that maps to the name 'System.Collections.Generic:Dictionary`2'. The deserializer has no knowledge of any type that maps to this name. Consider changing the implementation of the ResolveName method on your DataContractResolver to return a non-null value for name 'Dictionary`2' and namespace 'System.Collections.Generic'. Please help me.

Forum Post: Export Solution from CRM version 9 and import in CRM version 8

$
0
0
Hi All, I'm having a big trouble. One of my customer has developed many changes in a CRM Solution in DEV that has version 9. Now they want to move in Live, but Live has the version 8.2 and until the end of febraury there isn't any update plan. I've seen this article https://community.dynamics.com/crm/b/exploringdynamics365/archive/2017/11/05/dynamics-365-v9-no-target-version-when-exporting-a-solution but I don't know yet how to solve this problem Has someone had my same problem, and how it solved ? Thank you very much guys, Aldo

Forum Post: RE: C# integrated Application with Dynamics crm that is hosted On the cloud

$
0
0
Thank you Dear, i want to ask you if there any possibility to have a testing lab on the cloud if we need to test our application using the latest version of the CRM SDK Best Regards

Forum Post: RE: Unable to filter Option Set values in Dynamics 365 Editable Grid

$
0
0
Sorry :( . It didn't worked. I think there will be some difference in-between Form's Context and Editable Grid's Context . I am not seeing any methods such clearOptions, removeOptions for the Optionset control in Editable Grid's Context but I can see SetDisabled, GetDisabled methods (snip below)

Forum Post: RE: Cloning Records in Plugin

$
0
0
Hi. I would try following approaches: 1. Use custom action Create a custom action for Opportunity entity which takes a Currency (Entity or EntityReference) as a parameter. Add a conditional step, to check for any valid conditions to run. Add a step to create a new Opportunity with fields values copied from the current Opportunity. Add a step to delete/deactivate the current Opportunity. Create a dialog process for user to select the new Currency, and call the action with the selected currency passed to the action at the end of the dialog. User can then run the dialog using Start Dialog command in the form. Or you may want to create a custom command which calls the dialog directly. For the custom command refer this post: https://ribbonworkbench.uservoice.com/knowledgebase/articles/71374-1-getting-started-with-the-ribbon-workbench#Adding_a_button_to_the_Ribbon For calling dialog script, refer this post: dynamicscrmpros.com/open-dialog-process-microsoft-dynamics-crm-2013-using-javascript 2. Use Plugin Create a plugin on Pre-validation Update message for Opportunity entity, filter for Currency attribute change. Create a Pre Entity Image, include attributes. This image will be used to get the "before-update" Currency. Get "before-update" record and "updating" record: Entity preImage = (Entity)context.PreEntityImages["PreImage"]; Entity entity = (Entity)context.InputParameters["Target"]; EntityReference oldCurrency = (EntityReference)preImage["transactioncurrencyid"]; EntityReference newCurrency = (EntityReference)entity["transactioncurrencyid"]; Apply more logic as needed, and use SDK messages to create new Opportunity with fields copied from the current one, delete/deactivate the current one Then you'll want to cancel the Update event, and show a message that a new Opportunity has been created. throw new InvalidPluginExecutionException("A new Opportunity has been cloned"); Each approach has good and bad things, they depend on your requirements. Hope it helps.

Forum Post: RE: Connecting Dynamics and Adobe Campaign - issues with connecting

$
0
0
What is your CRM version? and what sdk version the application using to connect to the CRM? It may because of this update: blogs.msdn.microsoft.com/.../updates-coming-to-dynamics-365-customer-engagement-connection-security
Viewing all 137182 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>