Skip to main content

Posts

Showing posts from May, 2022

Fundamentals of Chai of Commands in microsoft D365 for Finance and operations

What is Chain Of Commands(COC)? Chain of command describes how we will extends or customize the Microsoft base code in Dynamics365. we can not perform any customization on Microsoft base objects/standard objects and codes directly. But we can make changes to separately on objects and then those changes can combine with base objects to make final version. Why Microsoft introduced the COC concept? In Ax Dynamics 2012 and earlier versions developers are able to directly modify  base Microsoft standard code for any customization and modification. There is a problem by doing direct modification of base code is that when Microsoft releases a hot fix or new features, the modified code need to be remerged with new base code other wise the clients cannot have proper intended purpose of modification the merging is time consuming process. So that Microsoft re-architected the code in such a way the base objects cannot be modified directly. When to use Chain of Commands? Standard Microsoft obje...

D365 interview Questions - Part 1

 1. What are the new Features of D365? or Difference between Microsoft Ax and D365? Answer: In D365 coding and development is done in VS-IDE where as in AX it was Morphx. Visual Studio Team Services (VSTS) is introduced in D365 for better control of Version. D365 is Now Hosted in IIS(internet information services) for moving and deploying projects from one environment to other environment LCS(life cycle services) Tool is available in D365 A model is made mandatory for development and customization Overriding is removed for standard elements, for any changes we can use extensions. COC(Chain of Command) concept is introduced for making changes in Microsoft base code  Form pattern is mandatory for UI design, You can choose only existing form patterns for UI design No Need to install D365 customer services separately customer can access by web browser Enhanced Integration with excel and Odata technologies New workspaces added Good Integration with office 365 software 2. What is Dy...