From 119b1df1c69e26f705a45ec87e00d101d52cf061 Mon Sep 17 00:00:00 2001 From: Luuk Date: Wed, 10 Jul 2024 15:59:55 +0200 Subject: [PATCH] First draft --- content/docs/patterns/error-handling/index.md | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 content/docs/patterns/error-handling/index.md diff --git a/content/docs/patterns/error-handling/index.md b/content/docs/patterns/error-handling/index.md new file mode 100644 index 00000000..c6156690 --- /dev/null +++ b/content/docs/patterns/error-handling/index.md @@ -0,0 +1,24 @@ ++++ +title = "Error Handling" +tags = ["AL"] +categories = ["Pattern"] ++++ + +_Created by Microsoft, Described by Luuk Busschers (Dysel)_ + +## Abstract + +The "Error Handling" system is used extensively to provide information to users about missing information in the system or other issues because of which the started process cannot be completed through Microsoft Dynamics 365 Business Central. + +## Description +Because of there is already a lot written about how to use the error handling the best in several scenario's in this page you will find a link to documentation on learn.microsoft.com and a link to a video about this subject on youtube. These links can be found in the list of references. + +The Microsoft Learn part is about collecting errors which means that the process you did start will not be interupted when one error is given, it will collect the errors in the process an you are able to show the user afterwards which errors where given in the process. + +The youtube video shows more about errors presented in such way that the user will be informed about how to solve the error. + +## List of references + +For usage of number series, there is more information available on: +- [Microsoft Learn: Error collections](https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-error-collection/) +- [Youtube: Microsoft Presents: User friendly error handling in AL](https://www.youtube.com/watch?v=D8233xMjVog&list=PLI1l3dMI8xlDM9onioMWUyMSCiFs_mMWw&index=27) \ No newline at end of file