Posts

Mastering Name Spaces & AL Explorer in Business Central Development

 Looking to streamline your AL development in Dynamics 365 Business Central ? In my latest YouTube video , I break down two essential tools: ✅ Name Spaces in AL – What they are and why they matter ✅ AL Explorer – How to navigate and use it efficiently Whether you're a beginner or an experienced AL developer , this video will help you simplify your workflow and enhance productivity . 🎥 Watch the full tutorial here:   Youtube Link 💡 Don’t forget to like, subscribe, and share to stay updated with more AL development tips! #ALDevelopment #NameSpacesInAL #ALExplorer #Dynamics365 #BusinessCentral #ALTutorial #ProgrammingTips #LearnAL #MicrosoftAL

Understanding the OptimizeForTextSearch Property in Business Central

 Are you curious about the OptimizeForTextSearch field property in Business Central ? In my latest YouTube video , I break down: 🔍 How to enable or disable the OptimizeForTextSearch property 🔍 What happens behind the scenes in SQL Server when you modify it 🔍 An interesting open question —what if we change the Boolean value directly in SQL? This is a must-watch for Business Central developers and anyone working with Dynamics 365 and SQL Server . 🎥 Watch the full video here:   Youtube Video 💡 Let’s discuss—what are your thoughts on modifying this property directly in SQL? Drop your insights in the comments of the video! #BusinessCentral #Dynamics365 #SQL #MicrosoftDynamics365BusinessCentral

Business Central Development: Setting Up Azure DevOps & GitHub with VS Code

If you're a Business Central developer , setting up a solid version control system is crucial for managing your code efficiently. In my latest YouTube video , I walk you through the step-by-step process of integrating Azure DevOps and GitHub with Visual Studio Code for seamless Business Central development. What You’ll Learn in This Video: 🚀 Creating a new organization in Azure DevOps 🚀 Setting up a new project and repository in Azure DevOps 🚀 Connecting VS Code to GitHub for Business Central 🚀 Performing essential Git operations in GitHub Whether you’re working with AL, C#, Python, JavaScript , or any other language, these steps will help you streamline your development workflow using Azure DevOps and GitHub. 🎥 Watch the full tutorial here:   Youtube Video 💡 Ready to take your Business Central development to the next level? Check out the video now! 🔗 Explore Azure DevOps: Azure DevOps Portal

Table Extensions in Business Central

Image
  Ever wondered what really goes on behind the scenes when you're making a table extension in Business Central? To find the answer, i created a new Extension for table "Sales Header" and added a new field "Rush Shipping". View in SQL - >     A new table is created by Business central automatically. >      New table contains the primary keys from parent table and also the newly added fields.
Image
  Auto Import of Objects from Dev to Test system I got a requirement to develop a solution so that technical changes can be moved automatically from Dev to Test system. Why we want to do this -  1) If developers have direct access on test system then there is a high risk that they will be developing directly on test system and this results in poor documentation, plus more issues when things move to prod. 2) Well there are custom solutions available, but the additional features that are being delivered are not needed. How i did this -  1) Created a powershell script. 2) Created a bat file. 3)  Created a directory to store the imported files. 4) Created a task in application server to run the bat file. Detailed Steps -  1) Powershell script -  2) create a notepad file and save it as .bat file with following code -  3) Look for task scheduler - 4) Create a task -  5) Specify path of your bat file, define the intervals when you want to run the task. P...

Unable to Remove Actions from Page/Double Actions on Page

Image
                     We may come across the scenario where we see multiple actions on the page, but some of them are not       working. As an example, we take the following object. Object Type - Page Object Id - 44 Object Name - Sales Credit Memo I Removed all the actions, but still below shown buttons are available and we cannot remove them. Also some of the buttons are giving the error. Solution : - Go to following path – Departments/Administration/IT Administration/Data Deletion/Configuration and Personalization       Go to both the pages. i)     Departments/Administration/IT Administration/Data Deletion/Configuration and Personalization/Delete Profile Configuration ii)     Filter Page Id  iii)   Delete all the entries. Do the same steps for ...

Compile Codeunit - 5301 "Outlook Synch. NAV Mgt"

Image
While compiling the object id 5301 "Outlook Synch. NAV Mgt", you may receive the below mentioned error - Error 1 -  --------------------------- Microsoft Dynamics NAV Development Environment --------------------------- Could not load type 'Microsoft.Dynamics.NAV.OLSync.Common.XmlTextWriter.'Microsoft.Dynamics.Nav.OLSync.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35''. --------------------------- OK  --------------------------- Error 2 -  --------------------------- Microsoft Dynamics NAV Development Environment --------------------------- You have specified an unknown variable. XmlTextWriter Define the variable under 'Global C/AL symbols'. --------------------------- OK    --------------------------- Resolution - Step 1) Step 2)  Try compiling the object on the system which you added Office outlook integration. Please feel free to get in touch in cas...