Introduction Today I saw one question on Microsoft Community, which helped me to write this article (If you are still not part of Microsoft Community forum you are really missing lot of learning, this is a great learning source, I have learned a lot from community forums, so join it today to share your knowledge with others and learn from… Read more »
Introduction Sometime we want to update the account associated to the opportunity, for example let’s say if opportunity status is changed to won, we want to update some of the attributes in the account record. This post is quick tip about doing these changes. Requirement Change Relationship type of the account to Customer when opportunity status changes to WON. Solution… Read more »
While creating work order record, I got following error: “Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: The user with SystemUserId=2….. in OrganizationContext=5…… is not licensed, and its SystemUserAccessMode is not either of (NonInteractive, SetupUser)……..” First thing I checked if the current user Access Mode is not set to Administrative or non-interactive as the error message was saying, but it was… Read more »
Introduction When we setup system N:N relationship between two entities an intersect entity is created internally, which is not accessible directly. Let’s say we have N:N relationship between case and workorder entity. And if you will try to see attributes of this entity, you will find following attributes So in case we want to query this entity, we need to… Read more »
There is a common requirement to filter subgrid based on the lookup field, but there is no easy way to implement it without writing code. In this post I am going to discuss a quick workaround to implement this requirement. Let’s see how we can implement this. Requirement: We want to show marketing list for accounts in contact form based… Read more »
Requirement: Have you been in a situation where you accidently deleted status reason option from quote entity and now want to add it back as soon as possible?? If yes then this article is going to help you. Solution: While adding options to option set, it’s value is generated automatically based on the option value prefix (You can find this… Read more »
Requirement: Track security role changes in Dynamics 365/CRM or earlier versions. Have you been in a situation where client is complaining about sudden access to unwanted entities/not required for their process or suddenly they are not able to perform some set of actions? If yes this article is going to help you. Solution: This is very common in CRM implementation… Read more »
Dynamics 365 provides different ways to implement client side notifications, we can implement them in different level. In this article we are going to provide different methods which can be used to work with notifications. setNotification This method is used to work with individual control over entity form. We can make use of this method to implement our client side… Read more »
I saw one question in CRM community forum today where user was looking for help to use PickFromQueue message, so I thought of writing sample code for the same, so that it can help others as well. Let’s first understand the message, why we need it. As name suggests this message is used to pick item from queue and used… Read more »
We can associate activities with entity records even though they are closed (in inactive state) because CRM setup 1:N relationship with activity and other activities related entities if Activities checkbox is selected under entity definition. But let’s say we have business requirement to stop this behavior. There is no out of the box setting to disable it, but we can… Read more »