- Видео 212
- Просмотров 153 139
Tek Na Msangi
Кения
Добавлен 22 ноя 2019
In 2017, I started my Dynamics NAV journey, extending using C/AL. An emphasis was put on the importance of understanding the base functional side of the application before developing.
Contrary to other technologies like C#, debugging knowledge on Navision/BC was not as common, and at that time very few RUclips channels on NAV existed, save for some great articles from MSDN.
I am a Microsoft certified Dynamics 365 Business Central Developer & Functional Consultant Associate. Since 2017 I have extended Dynamics Navision from version 2009 to 2018 using C/AL and as well extended D365 Business Central.
Tek Na Msangi aims at sharing the best AL development practices with a keen focus on efficiency and detailed descriptions to make it easy for the beginner to get started with Business Central. Please like & subscribe to the channel and share improvement suggestions as we grow together.
Contrary to other technologies like C#, debugging knowledge on Navision/BC was not as common, and at that time very few RUclips channels on NAV existed, save for some great articles from MSDN.
I am a Microsoft certified Dynamics 365 Business Central Developer & Functional Consultant Associate. Since 2017 I have extended Dynamics Navision from version 2009 to 2018 using C/AL and as well extended D365 Business Central.
Tek Na Msangi aims at sharing the best AL development practices with a keen focus on efficiency and detailed descriptions to make it easy for the beginner to get started with Business Central. Please like & subscribe to the channel and share improvement suggestions as we grow together.
Business Central Control Add-ins: Building Interactive Particle Animations
Hello, In video II of the control add add-in series, we create an exciting interactive particle effect to show us some of the cool things that we can create, stay tuned!
Contents
0:00 (Introduction);
0:58 (Create the exciting particle effect in Business Central);
8:50 (Test the Control-Addin);
13:19 (Conclusion);
#businesscentral #msdyn365bc #javascript #animation
Contents
0:00 (Introduction);
0:58 (Create the exciting particle effect in Business Central);
8:50 (Test the Control-Addin);
13:19 (Conclusion);
#businesscentral #msdyn365bc #javascript #animation
Просмотров: 92
Видео
Getting Started with Control Add-ins in Business Central: Modern UI Development with AL
Просмотров 13914 дней назад
The control add-in object allows you to add custom functionality to Dynamics 365 Business Central. A control add-in is a custom control, or visual element, for displaying and modifying data within an iframe or a page. For example, a control add-in can display the content of a webpage, visualize data as a chart or on a map, or host a custom web application. Control add-ins can exchange data with...
Configure Azure OpenAI in Business Central AL Programming.
Просмотров 123Месяц назад
Greetings folks! Welcome to video 3 of the AI meets AL series, in this video, we're going to configure Azure Open AI & Azure Open AI Studio keys, deployment & endpoints for usage in Business Central AL programming. We will leverage the Basic Item Substitution BCTech example found here github.com/microsoft/BCTech Contents 0:00 (Introduction); 4:25 (Checkout the BC Apps); 5:20 (Configure Azure Op...
Building the Prompt Dialog Page in Business Central using AL Programming.
Просмотров 1472 месяца назад
Learn how to create and use Prompt Dialog Pages in Dynamics 365 Business Central with AL programming. This video shows you how to build an AI friendly PromptDialog page to enable users to safely interact with AI in Business Central. Ref: learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/ai-build-experience?WT.mc_id=DX-MVP-5005267 Contents 0:00 (Introduction); 3:57 (Crea...
AI Meets AL: Revolutionizing Business Central with Copilot
Просмотров 1442 месяца назад
Unlock the power of AI in Business Central! Artificial Intelligence is about creating computer systems that can perform tasks that typically require human intelligence. This includes things like understanding language, recognizing patterns, and making decisions. In this video and series we will have a look at how we can leverage AI in AL programming for Business Central. Contents 0:00 (Introduc...
From Text String to Enum in AL programming.
Просмотров 1013 месяца назад
Two years ago I introduced the enum & the enum extension here: ruclips.net/video/PwoNIB0YvAU/видео.html In this video, we dive deep into Enum instance methods that will enable us to convert from a string to an enum. Ref: www.kauffmann.nl/2020/07/16/converting-enum-values-in-al/ Contents 0:00 (Introduction); 2:48 (Get the Enum Ordinals and Names); 7:05 (Testing & Conclusion);
Easily Subscribe to Events in Business Central AL Programming using Shift + Alt + E shortcut.
Просмотров 1153 месяца назад
Events in Business Central are used to trigger the execution of code in response to specific actions or behavior that occur in the system. Events are defined in codeunits and can be raised in codeunits, pages, and tables. You can subscribe to events in codeunits, pages, and tables to execute code in response to the event. Events are used to create loosely coupled code that can be reused and ext...
Discover the Latest AL Language Updates for Business Central v14
Просмотров 773 месяца назад
Greetings Business Central enthusiasts! 🌟 Ready to turbocharge your development skills? In this video, we unravel the latest updates in the AL language extension for Microsoft Dynamics 365 Business Central v14, more so the Date & Datetime updates. #msdyn365 #businesscentral #alprogramming TimeStamps 0:00 (Introduction); 0:32 (Business Central 2024 Release 2 AL Language v14 Change Log); 4:52 (Co...
How to use a query as a report data source in Business Central AL programming.
Просмотров 4834 месяца назад
In Microsoft Dynamics 365 Business Central, you can specify a query as the dataitem source of a report by following these steps: Create a query object: Queries in Business Central enable you to retrieve records from one or more tables or data sources and combine the data into rows and columns in a single dataset. There are two types of query objects: normal and API. A normal query retrieves rec...
Use Queries as Record Variables in Dynamics 365 Business Central AL Programming.
Просмотров 2065 месяцев назад
The power of queries can be visible when we want to fetch records from multiple tables. In this video, you will learn how to effectively utilize queries as record variables in Microsoft Dynamics 365 Business Central AL Programming. TimeStamps 0:00 (Introduction); 1:28 (Create a nested query); 3:37 (Compare retrieving records from queries vs retrieving from a record variable); 12:53 (Conclusion)...
How to Create Nested DataItems in the Query Object | Business Central AL Programming
Просмотров 2405 месяцев назад
Welcome to the third video in our Business Central AL Programming series! In this tutorial, we explore how to create nested dataitems in the query object, enabling advanced data retrieval and manipulation in Dynamics 365 Business Central. Key Topics Covered: Basics of nested dataitems in AL Structuring nested dataitems in query objects Practical examples and best practices Missed the previous v...
How to create a simple query in Business Central AL Programming.
Просмотров 2445 месяцев назад
Welcome to Video II of the query series, In this video we will create a new aggregate query that will display the items and their total quantity using AL programming. Stay tuned! The Contents 0:00 (Introduction); 1:15 (Create and define the query DataItems); 4:08 (Test the query); 5:55 (Conclusion); #businesscentral #msdyn365bc #video
The Query Object in Business Central, An Introduction to the Query Series.
Просмотров 2465 месяцев назад
In Microsoft Dynamics 365 Business Central, Query objects play a crucial role in retrieving records from multiple tables and consolidating the data into a single dataset with rows and columns. These Query objects can also perform calculations like finding the sum or average of values in a dataset column. There are two types of Query objects: normal and API. Normal Query objects are used to disp...
Use the Fixed Text Xml format to import and export data in Business Central.
Просмотров 1825 месяцев назад
If the fixed text format is used, then the width property has to be specified. In this video, we import and export using the Fixed Text XML format. learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-xmlport-overview?WT.mc_id=DX-MVP-5005267 learn.microsoft.com/en-us/training/modules/work-with-xmlports/?source=recommendations?WT.mc_id=DX-MVP-5005267 Link to File Use...
Import Data in Business Central using the xml format, AL programming.
Просмотров 2276 месяцев назад
In this video, we will import xml data in Business Central. The format has to match the XMLPort format. Link to File Used: github.com/msangicode/TekNaMsangi_XMLPortSeries/blob/main/XMLProperties.al learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-xmlport-overview?WT.mc_id=DX-MVP-5005267 learn.microsoft.com/en-us/training/modules/work-with-xmlports/?source=recomm...
Export data in XML format in Business Central AL Development.
Просмотров 3116 месяцев назад
Export data in XML format in Business Central AL Development.
Export & Preview Variable Text format csv data using in Xml Ports in Business Central.
Просмотров 1456 месяцев назад
Export & Preview Variable Text format csv data using in Xml Ports in Business Central.
Import Data into Business Central using XML Ports in CSV Format
Просмотров 5496 месяцев назад
Import Data into Business Central using XML Ports in CSV Format
An introduction to XML Ports Series, Business Central AL Programming.
Просмотров 3727 месяцев назад
An introduction to XML Ports Series, Business Central AL Programming.
Create a BarCode Report in Business Central AL Programming.
Просмотров 7328 месяцев назад
Create a BarCode Report in Business Central AL Programming.
How to Create an Report Extension Object in Business Central AL Programming and when to use it.
Просмотров 1,3 тыс.8 месяцев назад
How to Create an Report Extension Object in Business Central AL Programming and when to use it.
Substitute a report in Business Central AL programming.
Просмотров 4468 месяцев назад
Substitute a report in Business Central AL programming.
Inherent Permissions in Business Central AL Programming.
Просмотров 1099 месяцев назад
Inherent Permissions in Business Central AL Programming.
Grey Scale an Image via an Azure function in Business Central, Al programming (.NET Inteoperability)
Просмотров 1619 месяцев назад
Grey Scale an Image via an Azure function in Business Central, Al programming (.NET Inteoperability)
Grid control in Business Central AL programming.
Просмотров 51411 месяцев назад
Grid control in Business Central AL programming.
Loop Through JSON Keys and Values in Business Central AL programming.
Просмотров 38611 месяцев назад
Loop Through JSON Keys and Values in Business Central AL programming.
Get Json Data using Http Get from external REST services in AL programming.
Просмотров 23311 месяцев назад
Get Json Data using Http Get from external REST services in AL programming.
JSON for Beginners. Make a Http Get Request using Post Man
Просмотров 18811 месяцев назад
JSON for Beginners. Make a Http Get Request using Post Man