Are you looking to customize the display of related entities in Dynamics 365 CE?
In this blog post, we will explore how to hide related entities in the related
tab using JavaScript. This can be particularly useful when you want to
streamline the u...
Its important for every dynamics developer to understand the deprecated functionalities so that we can stay away from them in our current implementations. This would save lot of time and money when it comes to upgrade and rework when the func...
Greetings, Dynamics Techies! As the world of Dynamics evolves, we are faced with the challenge of developing JavaScript that can seamlessly transition between online and offline modes. With the introduction of the offline profile, this challenge h...
Code Snippet to show or hide a navigation using display nameFunction to show or hide NavsToggleNavigationItem = function (navName,isVisible) { var navs = Xrm.Page.ui.navigation.items.get(); for (var i in navs) { var nav = navs[i]; ...
Code Snippet to show or hide a Tab using display nameFunction to show or hide TabsToggleTab = function (tabName,isVisible) { var tabs = Xrm.Page.ui.tabs.get(); for (var i in tabs) { var tab = tabs[i]; if (tab.getLabel() === ta...
Code Snippet to show or hide a Section using display nameFunction to show or hide sectionToggleSection = function (tabName, sectionName, isVisible) { var tabs = Xrm.Page.ui.tabs.get(); for (var i in tabs) { var tab = tabs[i]; i...
After creating the organization/Instance in cloud, we may want to rename the organization URL to fix a typo or we have changed our mind.Can we do it? => yes, of-course Note: The organization unique name cannot be modified!How to...
Hello All,It feels great to be back with an interesting topic around duplicate detection and approaches.Duplicate detection is essential to maintaining data integrity and quality in any system and when it comes D365 though there are multiple optio...