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

Forum Post: RE: Reopening Opportunities Resulting in Duplicate Opportunities Listed in Reports

$
0
0
Are you sure you've not got an invalid join within your report that results in multiple records being returned? When a quote is reopened a new (version 2,3....) quote record is created but reopening an opportunity does not create a new record it just changes the state of the existing record to be editable...

Comment on Setting Default App in Dynamics 365 for Customer Engagement

$
0
0
Can this setting be updated via code?

Forum Post: RE: Cannot insert duplicate key while cloning Product programmatically using custom Action

$
0
0
This is assuming that you are creating a custom CodeActivity? If so, to narrow down the attribute causing the error without attaching the debugger, you can leverage the Plugin Trace Log and the Tracing Service. The Plugin Trace Log allows viewing your trace messages in addition to the exception stack trace. If so, you can grab a reference to the Tracing Service like this: protected override void Execute(CodeActivityContext executionContext) ITracingService tracer = executionContext.GetExtension (); Once you have the tracer object, you write the to the trace log using tracer.trace("message"); In your loop, write out the attributes and values... Last one would likely be the one with the issue. To enable the plugin tracing, go to Settings -> System -> Administration -> System Settings , and open the Customizations Tab and enable tracing: Run the workflow on the records that cause the exception.. then under settings, go to Plugin Trace log and you should see some new records with the exceptions. You may need to refresh the grid a few times until the log populates. Another trace viewer option is a Tool in the XrmToolBox called Plugin Trace Viewer by Jonas Rapp . This will allow to you to view the trace logs outside of CRM with additional filtering and sorting, including an automatic refresh.

Forum Post: RE: Method not found: 'Boolean Microsoft.Xrm.Sdk.osf.get_ExceptionRetriable()'.

$
0
0
its very new solution and there's just one entity in that solution. I did reinstalled RWB multiple times, but no luck. Method not found: 'Boolean Microsoft.Xrm.Sdk.osf.get_ExceptionRetriable()'. i'm having this error with my plug-in registration tool also

Forum Post: RE: Execution Context is not working in mobile client

$
0
0
Hi, Did you find the solution ? You can also refer below article - community.dynamics.com/.../java-script-execution-context-provides-form-values-on-web-as-well-as-uci-in-dynamics-365-v9-0 We would expect some reply from you , if my answer and even if you find solution yourself , you can share here and close the thread which may helps others in future.

Forum Post: RE: Method not found: 'Boolean Microsoft.Xrm.Sdk.osf.get_ExceptionRetriable()'.

$
0
0
You may want to recompile the plugin against a more recent SDK - that seems to solve the issue in this question community.dynamics.com/.../261281

Forum Post: RE: Troubleshooting SDK.REST.RetrieveRecord

$
0
0
Thanks for the response, Sreevalli! Okay, here's the edited code: var companyID = Xrm.Page.getAttribute('new_companyid').getValue()[0].id; var APContact = null; var name = null; SDK.REST.retrieveRecord ( companyID, 'Account', "new_AccountsPayableContactId", null, function (Account) { APContact = Account.new_AccountsPayableContactId; }, function Error() { alert('There is an error in reading account data.'); } ); Still not working. I know I can specify the exact fields that I'm trying to get, as you suggested, but my understanding from last time I worked on this (and when it worked) is that leaving the select parameter null the function will retrieve all the fields on the requested record. FYI, I'm using F12 in Google Chrome to see the values of the Javascript variables. Also, I've verified that the GUID being used to access the Account record is correct. Although, it is contained in curly braces. Is that a problem? Again, this worked last time I tried this, two years ago on a different entity.

Forum Post: RE: If a field changes on the existing parent record how can I get that new value to show on the existing child record

$
0
0
Thanks Andrew for the response. The problem is that the "Update Records" setup (UWT: Bulk Operations:Update Records) requires a relationship name. In my case, im updating a lookup field on the very record thats triggering the workflow, its updating its-self, there are no relationships to specify. if i run it without specifying a relationship, the workflow fails "Reationship Name Parameter is empty!". I also cant the use the regular "Update Record" workflow step, but that would allow me to use a dynamic value if its not from another lookup field pointing to the same entity.

Forum Post: RE: If a field changes on the existing parent record how can I get that new value to show on the existing child record

$
0
0
In update record step there is a possibility to define just fetchxml. That should do the trick for you.

Forum Post: Time duration for CRM Dyamics 2015 on premise to CRM D365 onpremise

$
0
0
Hi All, Please let me know the time duration for upgrading CRM Dynamics 2015 on premise to CRM D365 on premise. 78 SSRS reports to fetchXML , 47 plugins to sandbox mode, 115 javascript , Power BI Reports from various data sources(New). I need approximate no of days. Thanks, Parashuram Jadhav

Forum Post: RE: Attach attachment to email

$
0
0
Hi Sir good Day, what would be the correct process, since i can retrieve the attachment from the annotation, can i have directly attach the attachment from the annotation to the email or should i create a activitymimeattachment using the attachment that i retrieved from the annotation and attach to email, sorry im confused and i really need some help.

Comment on What is this Global Option Set External Value field for?

$
0
0
I have the same challenge with ODATA, have you found out ?

Blog Post: Stop sending appointment-invitation to attendees

$
0
0
Based on my previous post, CRM is sending appointments automatically to the attendees. But what if you don’t want CRM to send this appointments? The system itself has no option, to disable this behavior, but there is a workaround. This is not just configurable in CRM but also on Exchange. How is this working: Add ... The post Stop sending appointment-invitation to attendees appeared first on Microsoft Dynamics 365 (CRM) .

Forum Post: How to edit quick search view?

$
0
0
I have a quick search view which looks like this: ----------- customerName ----------- when I change the order of the columns in my quick find view I got: customerName ---------------- ---------------- Why do I have these = '--------' and not the data that I choosen in my view ? where do I fix it ?

Blog Post: The label ‘Tab’, id: ‘…’ already exists. Supply unique labelid values.

$
0
0
I had to transfer some forms of our test environment to our productive environment and therefore, I created a solution. In this solution all forms, fields and related items where added. I exported the solution and tried to import it to our productive system. But the import stopped and throw the error “The label ‘Tab’, ... The post The label ‘Tab’, id: ‘…’ already exists. Supply unique labelid values. appeared first on Microsoft Dynamics 365 (CRM) .

Forum Post: RE: How to edit quick search view?

$
0
0
can you send a snapshot ? is there any plugin registered on the RetrieveMultiple of this entity ? can you open Plugin Registration and check that?

Forum Post: RE: How to edit quick search view?

$
0
0
Hey oliver plugin? I thought it's all about customization in the QUICK FIND VIEW of my entity, there are some plugins connected to this entity, what should I look for?

Forum Post: RE: Get option set label from fetchXML aggregate query.

$
0
0
Hi, I can use only FetchXML with out any code around it, how would it be possible to retrieve the option set values. Right now I'm getting only the ID. Tnx, Micahel

Forum Post: RE: Time duration for CRM Dyamics 2015 on premise to CRM D365 onpremise

$
0
0
No one can tell you without a few days of investigation and access to the source code of the SSRS reports, the plugins and the Javascript scripts... It could be 100 days it could be 500... Also are you sure you want to be using Power BI on-premise it comes with a hefty licence fee you are probably better sticking with SSRS unless you are planning to go online.

Forum Post: Error on creating new Email(custom Workflow)

$
0
0
Hi Guys I need some help about this error everytime i created new email can anyone help me on how to fix this? Thank you so much for the help
Viewing all 137182 articles
Browse latest View live


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