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

Forum Post: RE: Can ACCESS TEAMS share record without adding a user in sub-grid template?

$
0
0
Hi Nagraj, Thank you for your response. There is no other way than using the code? I am new to CRM code. Could you please tell me where would i add the code and how? Should i use CRM Plugin? If possible could you please provide with steps and example? I have multiple records that user will need access too, some are custom entities as well. Thanks in advance.

Forum Post: Receive and Send http request using Power Automate

$
0
0
Hi Experts, I have been looking for a solution to a particular scenario where I will need to Trigger my flow when an external application sends a http request (this request has a user email). Within same flow I will need to get some data from Dynamics for corresponding email address and send back a http request. I have created Power Automates to send requests to other applications but couldn't find a way to receive a request and use it as trigger. Please suggest.

Forum Post: RE: why custom button is not shown correctly

$
0
0
Good day sahara, Could you share more details like screenshot on your 'created in html a button checked and no prob (html code is fine)'. Detailed info would help us investigate it conveniently. Thanks. Regards Johnny

Forum Post: RE: From (object) not populated in Email Queue(s)

$
0
0
Hi Greetings ! if you can include respective screenshots that would be easy for community experts to guide you.

Forum Post: RE: Receive and Send http request using Power Automate

$
0
0
Hello, Seems this thread is lookalike your requirement - powerusers.microsoft.com/.../81930

Forum Post: RE: Get error try to access CRM in Edge

$
0
0
Hello, Why usage of Chrome is not an option? Unfortunately it's not clear what is wrong so if you want to resolve this error - get in touch with Microsoft and open a ticket.

Forum Post: RE: Register Plugin On RetrieveMultiple for Security Manners

$
0
0
Hi Greetings ! you can easily acheive this requirement using retrieveMultiple request. you can get the context user on loading of that global view and fetch respetive security role of that respective user. if the role satisfy your need then you can show the records or else you can add a condition expression through code to display only relevant records. check below it will give you a completed idea on how to acheive this. crm365blog.wordpress.com/.../

Forum Post: "CC_CardFeed_Name" Control

$
0
0
Hello all, I have seen in some entities the control " CC_CardFeed_Name" does anyone know what is this control for ? thank you.

Forum Post: RE: From (object) not populated in Email Queue(s)

Forum Post: RE: Get error try to access CRM in Edge

$
0
0
Hi The org is accessible! Have you tried to clear your browser cache? askleo.com/.../ Thanks

Forum Post: RE: Show Hide Sub Grids based on a Option Set

$
0
0
Sure, here you go: Tab - Tasks Section 1 - Read Only Tasks Grid Sub Grid 1 - Read Only Tasks Grid Section 2 - Editable Grid Tasks SubGrid 2 - Editable Tasks Grid Option Set Trigger - Show Task Grids Options field Form Properties - OnLoad Form Properties - OnChange Handler Properties Same for onLoad and OnChange Code is the same as above

Forum Post: RE: Dynamics Tracked emails

$
0
0
Did you have it so that it was tracking all emails then? Set it to "In response to Dynamics 365 emails only" Then users can manually track emails they want to track through Outlook and the replies will track automatically. Emails created from within dynamics 365 will track too if they are created against a record. Regards Paul

Forum Post: Transition to Unified Interface

$
0
0
We recently transitioned to the Unified Interface. I see this warning message "This is a legacy app and might have features or customizations that aren’t supported in Unified Interface. For best results, create a model-driven app for Unified Interface." Even though I see this message , all my customization are in tact, What else am I missing? Here is my version details Thank YoU!

Forum Post: have you tried an Azure data bus connection? Service endpoint?

$
0
0
I've got a service endpoint to an Azure Service Bus queue. My compadre wrote an Azure function to forward some SOAP to the accounting system. I just sent up 20 new productids at once (select 20, publish button.) My plugin handles each one at a time so it becomes 20 messages on the queue. The round-trips back to CE are sequential taking about a minute apiece (first one back in ~2 minutes, last one ~22 minutes.) However, the Azure function log says none of its round-trips is longer than 10.24 seconds and that the messages are arriving a minute apart. Where is this process being throttled and why? I can't imagine CE is putting a minute between each IPluginExecutionContext. So, I'm blaming the Azure Service Bus. Am I justified and what can be done about it? thanks

Forum Post: RE: SLA KPI status does not turn to success when case is resolved

$
0
0
You don't need the last 2 lines in your success criteria, you just need Case Status Equals Cancelled:Resolved. I assume you have a time value in the Failure and Warning sections, so if the case gets resolved before that time you will get a success. Regards Paul

Forum Post: RE: How to Calculate Percentage Field

$
0
0
Not quite sure of your exact requirement but you can set the calculation using a Flow, business rule or calculated field. Can you elaborate a bit more on your requirement? Regards Paul

Forum Post: Can I execute xslt on the contents of a field?

$
0
0
I'm looking at the documentation for these Web resources Stylesheet (XSL) Reading the script.js example it shows an ActiveXObject that loads XML from file given the file's url. I don't have a file. I have a formContext.getAttribute( ).getValue() where the field contains the XML that I want to transform. How do I satisfy an Msxml2.DOMDocument.6.0 with a "stream" rather than a filename/url? thanks

Forum Post: RE: Show Hide Sub Grids based on a Option Set

$
0
0
Hello sir, thanks for offering help. I tried your code as well, without the desired results: function ShowHideTaskGrids(execContext) { try { if (execContext === null) return; var formContext = execContext.getFormContext(); if (formContext.getAttribute('lennar_showtaskgridstoptions')) { var ShowTaskGridsOptions = formContext.getAttribute('lennar_showtaskgridstoptions').getValue(); switch (ShowTaskGridsOptions) { case 531180000: formContext.ui.controls.get('DealTasksReadOnly').setVisible(true); formContext.ui.controls.get('DealTasksEditable').setVisible(false); break; case 531180001: formContext.ui.controls.get('DealTasksEditable').setVisible(true); formContext.ui.controls.get('DealTasksReadOnly').setVisible(false); break; case 531180002: formContext.ui.controls.get('DealTasksReadOnly').setVisible(true); formContext.ui.controls.get('DealTasksEditable').setVisible(true); break; default: formContext.ui.controls.get('DealTasksReadOnly').setVisible(false); formContext.ui.controls.get('DealTasksEditable').setVisible(false); } } } catch (err) { console.error(err); } } I have the Form and Event handlers the same as my screenshots.

Forum Post: RE: Solution import was failed.

$
0
0
Unfortunately my proposed solution was not helping. Would it help to delete (not remove) the apps from the unmanaged solution and import it at the target solution?

Forum Post: RE: Dynamics 365 webApi - Creating 3rd record times out

$
0
0
So the issue ended up being that I was not using HttpResponseMessage.Dispose() after making the calls. I had a using statement for the HttpClient but I guess it was too big. Once I started using Dispose() everything started working.
Viewing all 71679 articles
Browse latest View live


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