Skip to main content

Posts

Showing posts from February, 2019

Microsoft Dynamic CRM frequently asked Interview questions

1. What is the Entity Relationship Behavior? 2. Plugin Development Steps for MSCRM? 3. Explain the Plugin Vs Workflow in MSCRM? 4. Explain the Sales module Life Cycle in MSCRM ? 5. Explain the Users and Teams in MSCRm? 6. What are the actions in MSCRM? 7. What is Access Team and explain how to enable access teams in MSCRM? 8. What is the Plugin Constructor ? 9. Explain the POWER BI integration for On Premise and Online version of MSCRM? 10. Explain the all modules life cycles in outbox Mscrm? 11. Explain all about mscrm portals ? 12. What is the execution order of Javacript, workflow and plugin in mscrm? 13. What is Depth? How to use it? 14. What is Maximum Depth? 15. What is Scope in Business Rules? 16. What is secured and unsecured  configurations plugin? 17. What is access levels? 18. What is Query Expression? 19. What is QueryByAttribute and Fetch expression? 20. What are the shared variables? 21. What is unisolated plugin? 22. Ex...

Early Vs Late binding in Dynamics CRM

Ref:  https://dynamics-crm.blog/2017/05/05/early-vs-late-binding-in-dynamic-crm/ While working on plugins and custom workflow, We encounter a problem that we need extract data from existing and custom entity. There are two ways to do this job one is Early binding and another is late binding. Let’s see how we can do that. Early Binding Late Binding Early Binding  By Early binding, we mean that we generate domain class objects first and then assign data to these domains class objects is known as Early Binding. How to generate Entities.cs class using XRM Tool Download XRM Tool Box. http://www.xrmtoolbox.com/ Connect to CRM Connection. Go to EarlyBoundGenerator If Not installed please install from plugin store. Just click Create Entities Once entities are created you need to push this file into your workspace. Once added they can be used to initialize that entity and pass data in that entity object. Late Binding in dynamic CRM No ...

How to Create Dynamics 365 SSRS Report

https://readyxrm.blog/2018/07/24/how-to-create-your-first-dynamics-365-ssrs-report/ Summary SQL Server Reporting Services reports are a viable way to generate information from your Dynamics 365 system. The Dynamics 365 Report Wizard has limitations in terms of the reports that can be created. Creating SSRS Reports does not necessarily require deep development skills. This post outlines the steps to create a simple SSRS report integrated and connected to Dynamics 365 without using the Dynamics 365 Report Wizard. Dynamics 365 SQL Server Reports Dynamics 365 Sales and Service Apps come with a set of reports out of the box.  In my experience, these reports are not often used and in most cases, there is a need for custom reports. The Dynamics 365 report wizard can create simple list based reports based on one or two related entities, has some basic charting abilities, but has limits on flexibility. With some basic knowledge, you can create custom SSRS reports for D...

How to debug a plugin in Dynamics 365 online using plugin profiler

Ref:  https://dynamics365blocks.wordpress.com/2016/12/06/how-to-debug-a-plugin-in-dynamics-365-online-using-plugin-profiler/ How to debug a plugin in Dynamics 365 online using plugin profiler In this post we’ll learn how one can debug a plugin code in Dynamics 365 online or Dynamics CRM online environment. What you need is dynamics 365 SDK which ou can download from  here . Below is the Step by Step procedure to debug a plugin in Dynaamics 365/Dynamics CRM online: Step 1:  Download and extract Dynamics 365 SDK  in any folder. Step 2:  Now navigate to SDK\Tools\PluginRegistration Here you’ll see  pluginRegistration.exe  file. Double click on it and create a new  connection.by  clicking “Create New Connection” Step 3:  Click on login. It’ll ask for credentials. Provide your dynamics 365 username and password and click sign in. Step 4:  Now it’ll display the available instances of your organiz...