Forum Post: RE: Step by Step What I need to start to send insert and update...
Hi guys Finally, I found the solution. I coded this: WinOpportunityRequest winOpportunityRequest = new WinOpportunityRequest(); Entity opportunityClose = new Entity("opportunityclose");...
View ArticleForum Post: Error: This content can't be displayed in this frame.
Hello there! I was with this problem somes days when I've tried to integrated SharePoint to CRM2016 (On Premise) and get post of solutions like to add urls in safes sites, add ips, the frame is too...
View ArticleForum Post: RE: deactivating workflow using web api generates error
I saw that sample. It is indicated that the SetState request should migrate to UpdateRequest which is what I thought the web api was doing as a POST....
View ArticleForum Post: RE: Portal Error: Failed to retrieve current HTTP context
We still randomly run into this problem. We haven't found a pattern to the problem. Our portal usage is pretty consistent, and sometimes we run into the error multiple times per week, at other times we...
View ArticleForum Post: RE: Contact merge issue - Activities 'Completed By' changes....
I'm seeing the same issue, but wanted to chime in on what I think is actually happening. When merging two contact records, the activities from the subordinate record are actually moved to the chosen...
View ArticleForum Post: RE: deactivating workflow using web api generates error
I should add that deactivating via the web api works using the payload as described above with adjusted values.
View ArticleForum Post: RE: Moving dates on appointment - Not syncing this change
Anyone have any other ideas?
View ArticleForum Post: RE: Error on clicking Existing Contact and Existing Account
I'm getting the same error - started happening out of nowhere. This workaround works, but not a permanent solution. Huzefa, did you get any feedback from Microsoft?
View ArticleBlog Post: How to Configure a Point of Sale in D365 for Retail in a Day
Microsoft Dynamics 365 for Retail has an integrated Point of Sale (POS) system that can be Cloud based or on premises. The solution is also available in a standard POS configuration, which is called...
View ArticleForum Post: c# get calculated field value
Hi, I am trying to get calculated field value, is that the same as get the value from regular field, like the below, I keep getting "object reference not set to an instance of an object", the record...
View ArticleForum Post: Generate X records with a workflow
Hello, I am currently struggling with a creation of a workflow. It needs to run "X" times and generate "X" records. I have an entity called Reservation and one called Placement. Reservation is the...
View ArticleForum Post: RE: Issue with Quick Create Forms in Chrome
We're having the same issue, and of course Google make it extremely difficult for you to stop Chrome auto-updating. So installing the previous version doesn't really help :(
View ArticleForum Post: RE: Generate X records with a workflow
Hi Lucas, OOB workflow doesn't give the flexibility to iterate ,the better way would be to write a plugin on creation of reservation and based on your value create placement records Regards, Shaminder
View ArticleForum Post: RE: c# get calculated field value
Yup we can get it as you have written but make sure to use logical name not schema name ,in your screenshot it appears to be schema name
View ArticleForum Post: RE: Early binding vs late binding in Crm d365
@Kenneth, just two things: 1) you can do linq with late bound (see this MSDN example msdn.microsoft.com/.../gg334415.aspx ) 2) if you need to dynamically add or not conditions to a query, it's easier...
View ArticleForum Post: RE: Generate X records with a workflow
Hello Shaminderpal, Would you help us achieve this? We are willing to compensate whoever helps us.
View ArticleForum Post: AddUserToRecordTeam Web Api Action returns "Bad Request"
Hi everyone, I am trying to programmatically add users to record access team, below is the request that returns `Bad Request` response, please advise - (CRM Version 8.1.1.1707) Online, plugin is not a...
View ArticleForum Post: RE: Generate X records with a workflow
Hello Lucas , You can achieve it using below steps: 1)Write a plugin on post create 2)From the context get the no of placements to be created 3) Iterate that number of times and generate a execute...
View ArticleForum Post: RE: c# get calculated field value
Hi , You are correct , this is the way you can retrieve the calculated Field based on field type. Money MyFieldValue = (Money)ContextEntity.GetAttributeValue ("FieldNAme"); Seems the field name you are...
View ArticleForum Post: RE: Generate X records with a workflow
If the max is 20 records. You create a complex workflow out of the box. You could create a field called 'reservationscount' which is essentially just a copy of the value of the reservations field. You...
View Article