Skip to main content

Posts

How to use Form Component Control to Edit Related Entity Information in Dynamics 365 CRM

In the recent release of the Dynamics 365 CRM, new features have been added. One of the most important and useful features among these is the feature to see and edit data of the related entity on the main form using the “Form Component Control”. A feature like this is useful in many ways, for example, if a salesperson is working on the Opportunity record and they want to change some related information of a customer then they can do it on the same form itself. Previously, if the same salesperson wanted to edit the information of the customer, they needed to open records of the customer and then change the information. This was not efficient, previously with the help of Quick View Form we could see the data of related records but now using Form Component Control they can edit information of related entity records. We can edit the related record information within the same form, by following the below steps: Go to Customizations  -> Customize the System -> go to Opportunity ent...
Recent posts

Microsoft Teams Integration and Custom Teams app Development useful URLs

 Microsoft Teams Integration and Custom Teams app Development useful URLs 1. https://gonadn.medium.com/microsoft-teams-how-to-start-developing-custom-teams-apps-bf9df75b5e97 2.  https://docs.microsoft.com/en-us/microsoftteams/platform/tutorials/get-started-dotnet-app-studio 3. https://docs.microsoft.com/en-us/microsoftteams/platform/build-your-first-app/build-first-app-overview 4.  https://stackoverflow.com/questions/54946502/microsoft-teams-incoming-call-event 5. https://docs.microsoft.com/en-us/answers/questions/243757/capture-incoming-microsoft-teams-call-information.html 6. https://docs.microsoft.com/en-us/microsoftteams/platform/bots/calls-and-meetings/call-notifications 7.  https://docs.microsoft.com/en-us/microsoftteams/platform/bots/calls-and-meetings/registering-calling-bot#creating-a-new-bot-or-adding-calling-capabilities-to-an-existing-bot 8. https://docs.microsoft.com/en-us/microsoftteams/platform/bots/calls-and-meetings/requirements-considerations-applic...

Power Apps Community Plan: a free development environment for individual use

  Now you can create a developer instance for learning and creating power apps. It will not expire unlike a trail instance. Use the below link to know more about this. https://docs.microsoft.com/en-us/powerapps/maker/dev-community-plan Use the below link to create your developer instance. https://powerapps.microsoft.com/en-us/communityplan/

What is Secure Vs Unsecure configuration of plugin in Dynamics 365 CRM

  While developing plugin for Microsoft Dynamics CRM, there are some scenarios where you required an input parameters or a configuration for the plugin execution which can be easily updated without having to re-compile or re-registering the plugin. When you register a plugin step, there are fields where you can specify configuration parameters for the plugin execution. In Microsoft Dynamics CRM there are two types of different configurations fields are available for plugin-         1.         Unsecure configuration.         2.         Secure configuration. The main difference between these two settings is that, secure configuration is only viewable by CRM Administrators while the unsecure configuration is viewable by any CRM user.  Another major difference is- the unsecure configuration will automatically move between environments with your CRM solutions. How to use th...

How to prevent record from saving in Dynamics CRM using Javascript

  From time to time you might need to add some validation to the save event of an entity, this actually used to be an approach I would use on a regular basis but since the introduction of business rules have found myself doing this less and less. But still, knowing the ability is available is handy. When you define the onsave event function, you must tick the “Pass execution contact as first parameter” option. (See below) Having done that you can create an onSave function with code similar to the example I have shown below. Note forgetting the “(context)”, which will take the context parameter allowing you to prevent the save when needed. function onSave(context) { var saveEvent = context.getEventArgs(); if (Xrm.Page.getAttribute("telephone1").getValue() == null) { // *** Note: I am using an alert for testing a notification maybe better! alert("Put in a phone number!"); saveEvent.preventDefault(); } } Note: This simple example might be better achi...

Dynamics 365 CRM Interview Questions 2021

 1. What is filtered view? 2. Difference between secure and unsecure configuration? 3. What is Depth Variable, explain any scenario in Realtime usage of depth? 4. Power Portals, Power Bi, Logic Apps, Power Bi, Power Automate related questions? 5. What are actions in CRM? 6. How did you do the release management? 7. Plugin and Workflows in CRM? 8. Business rules in CRM? 9. What are Roll up and Calculated fields? 10. What is business process flows and how we can apply security on it? 11. How to create reports in SSRS?