diff --git a/docs/bestpractices/begin-as-an-afterword/index.html b/docs/bestpractices/begin-as-an-afterword/index.html
index 8217bc75..05924388 100644
--- a/docs/bestpractices/begin-as-an-afterword/index.html
+++ b/docs/bestpractices/begin-as-an-afterword/index.html
@@ -582,6 +582,7 @@ Bad code ifICPartnerRefType=ICPartnerRefType::"Common Item No."thenbegin
diff --git a/docs/bestpractices/begin-end/index.html b/docs/bestpractices/begin-end/index.html
index 9b4eaebd..4524500e 100644
--- a/docs/bestpractices/begin-end/index.html
+++ b/docs/bestpractices/begin-end/index.html
@@ -609,6 +609,7 @@ Bad code ifFindSet() thenbeginrepeat... untilnext() =0;end;Good code ifFindSet()
diff --git a/docs/bestpractices/binary-operator-line-start/index.html b/docs/bestpractices/binary-operator-line-start/index.html
index 201a9cbb..9fcef773 100644
--- a/docs/bestpractices/binary-operator-line-start/index.html
+++ b/docs/bestpractices/binary-operator-line-start/index.html
@@ -585,6 +585,7 @@ Bad code "Quantity to Ship":=Quantity-"Quantity Shipped"Good cod
diff --git a/docs/bestpractices/case-actions/index.html b/docs/bestpractices/case-actions/index.html
index a641ece7..94db3b46 100644
--- a/docs/bestpractices/case-actions/index.html
+++ b/docs/bestpractices/case-actions/index.html
@@ -587,6 +587,7 @@ Bad code caseLetterof'A':Letter2:='10';'B':Letter2:='11';end;Good code caseLette
diff --git a/docs/bestpractices/comments-spacing/index.html b/docs/bestpractices/comments-spacing/index.html
index 2ff00830..c3b926d5 100644
--- a/docs/bestpractices/comments-spacing/index.html
+++ b/docs/bestpractices/comments-spacing/index.html
@@ -579,6 +579,7 @@ Bad code RowNo+=1000;//Move way below the budget Good code RowNo+=1000;// Move w
diff --git a/docs/bestpractices/customtelemetry/index.html b/docs/bestpractices/customtelemetry/index.html
index e8116b40..343427cf 100644
--- a/docs/bestpractices/customtelemetry/index.html
+++ b/docs/bestpractices/customtelemetry/index.html
@@ -651,6 +651,7 @@ Some examples
For privacy reasons, events that have a DataClassification other than SystemMetadata aren’t sent to Application Insight resources set up on the tenant. During development of your extension, it’s good practice to have a privacy review of the use of LOGMESSAGE calls to ensure that customer data isn’t mistakenly leaked into Application Insights resources.
Last modified February 26, 2022:
Resolve comments + extra chapter (fb6a07a1)
+by Arend-Jan Kauffmann
diff --git a/docs/bestpractices/deleteall/index.html b/docs/bestpractices/deleteall/index.html
index ccca5abb..a78a9287 100644
--- a/docs/bestpractices/deleteall/index.html
+++ b/docs/bestpractices/deleteall/index.html
@@ -581,6 +581,7 @@ Therefore it’s good practice to always check if the table is empty when pe
diff --git a/docs/bestpractices/end-else-pair/index.html b/docs/bestpractices/end-else-pair/index.html
index 03dca001..f48896b0 100644
--- a/docs/bestpractices/end-else-pair/index.html
+++ b/docs/bestpractices/end-else-pair/index.html
@@ -591,6 +591,7 @@ Bad code ifOppEntry.Find('-') thenifSalesCycleStage.Find('-') thenbegin... endel
diff --git a/docs/bestpractices/index.html b/docs/bestpractices/index.html
index cb33f3ed..4684dd5f 100644
--- a/docs/bestpractices/index.html
+++ b/docs/bestpractices/index.html
@@ -695,6 +695,7 @@
diff --git a/docs/bestpractices/keyword-pairs-indentation/index.html b/docs/bestpractices/keyword-pairs-indentation/index.html
index 8ddfeafc..6ba18bc7 100644
--- a/docs/bestpractices/keyword-pairs-indentation/index.html
+++ b/docs/bestpractices/keyword-pairs-indentation/index.html
@@ -580,6 +580,7 @@ Bad code if(x=y) and(a=b) thenGood code if(x=y) and(a=b) then">
diff --git a/docs/bestpractices/line-start-keywords/index.html b/docs/bestpractices/line-start-keywords/index.html
index e9425e86..57d6ba7d 100644
--- a/docs/bestpractices/line-start-keywords/index.html
+++ b/docs/bestpractices/line-start-keywords/index.html
@@ -587,6 +587,7 @@ Bad code ifIsContactNamethenValidateContactName() elseifIsSalespersonCodethenVal
diff --git a/docs/bestpractices/lonely-repeat/index.html b/docs/bestpractices/lonely-repeat/index.html
index 0f8d4ef5..32cafe9b 100644
--- a/docs/bestpractices/lonely-repeat/index.html
+++ b/docs/bestpractices/lonely-repeat/index.html
@@ -580,6 +580,7 @@ Bad code ifReservEntry.FindSet() thenrepeatGood code ifReservEntry.FindSet() the
diff --git a/docs/bestpractices/named-invocations/index.html b/docs/bestpractices/named-invocations/index.html
index 55377332..3f40d26f 100644
--- a/docs/bestpractices/named-invocations/index.html
+++ b/docs/bestpractices/named-invocations/index.html
@@ -579,6 +579,7 @@ Bad code Page.RunModal(525,SalesShptLine);Good code Page.RunModal(Page::"Pos
diff --git a/docs/bestpractices/one-statement-per-line/index.html b/docs/bestpractices/one-statement-per-line/index.html
index e0ed8333..f0e77943 100644
--- a/docs/bestpractices/one-statement-per-line/index.html
+++ b/docs/bestpractices/one-statement-per-line/index.html
@@ -594,6 +594,7 @@ Bad code ifOppEntry.Find('-') thenexit;Good code ifOppEntry.Find('-') thenexit;B
diff --git a/docs/bestpractices/separate-if-and-else/index.html b/docs/bestpractices/separate-if-and-else/index.html
index b36f514b..02145ecc 100644
--- a/docs/bestpractices/separate-if-and-else/index.html
+++ b/docs/bestpractices/separate-if-and-else/index.html
@@ -585,6 +585,7 @@ Bad code ifAtom='\>'thenHasLogicalOperator:=trueelsebegin... end;Good code ifAto
diff --git a/docs/bestpractices/spacing-binary-operators/index.html b/docs/bestpractices/spacing-binary-operators/index.html
index 8ee6e7aa..3f4eb74f 100644
--- a/docs/bestpractices/spacing-binary-operators/index.html
+++ b/docs/bestpractices/spacing-binary-operators/index.html
@@ -596,6 +596,7 @@ Bad code "Line Discount %":="Line Discount Amount"/"Line Val
diff --git a/docs/bestpractices/subscribercodeunits/index.html b/docs/bestpractices/subscribercodeunits/index.html
index 0688d07b..dbda428c 100644
--- a/docs/bestpractices/subscribercodeunits/index.html
+++ b/docs/bestpractices/subscribercodeunits/index.html
@@ -754,6 +754,7 @@ Keep the codeunit as small as possible Every time a subscriber gets called, a ne
The Generic Method Pattern
diff --git a/docs/bestpractices/suggested-abbreviations/index.html b/docs/bestpractices/suggested-abbreviations/index.html
index c429d77f..2b63e7da 100644
--- a/docs/bestpractices/suggested-abbreviations/index.html
+++ b/docs/bestpractices/suggested-abbreviations/index.html
@@ -1967,6 +1967,7 @@ If there is no other choice, then use the suggestions below.
diff --git a/docs/bestpractices/unnecessary-else/index.html b/docs/bestpractices/unnecessary-else/index.html
index 4fef729b..9629a5a7 100644
--- a/docs/bestpractices/unnecessary-else/index.html
+++ b/docs/bestpractices/unnecessary-else/index.html
@@ -588,6 +588,7 @@ Bad code procedureSomeProcedure() beginifIsAdjmtBinCodeChanged() thenError(Adjmt
diff --git a/docs/bestpractices/unnecessary-truefalse/index.html b/docs/bestpractices/unnecessary-truefalse/index.html
index 3a652b7e..6fccd231 100644
--- a/docs/bestpractices/unnecessary-truefalse/index.html
+++ b/docs/bestpractices/unnecessary-truefalse/index.html
@@ -590,6 +590,7 @@ Bad code ifIsPositive() =truethenGood code ifIsPositive() thenBad code ifComplet
diff --git a/docs/bestpractices/variable-naming/index.html b/docs/bestpractices/variable-naming/index.html
index edd3547c..c781cbc9 100644
--- a/docs/bestpractices/variable-naming/index.html
+++ b/docs/bestpractices/variable-naming/index.html
@@ -606,6 +606,7 @@ If a variable is a compound of two or more words or abbreviations, each word or
diff --git a/docs/bestpractices/variables-declarations-order/index.html b/docs/bestpractices/variables-declarations-order/index.html
index aedc3720..148b266c 100644
--- a/docs/bestpractices/variables-declarations-order/index.html
+++ b/docs/bestpractices/variables-declarations-order/index.html
@@ -598,6 +598,7 @@ Bad code StartingDateFilter:Text;Vendor:RecordVendor;Good code Vendor:RecordVend
diff --git a/docs/contributing/forkandpr/index.html b/docs/contributing/forkandpr/index.html
index a8cb4ba1..85783550 100644
--- a/docs/contributing/forkandpr/index.html
+++ b/docs/contributing/forkandpr/index.html
@@ -604,6 +604,7 @@ If You haven’t worked in collaboration with “external” GitHub
GitHub will bring you to a page where you can enter a title and a description of your changes. It’s important to provide as much useful information and a rationale for why you’re making this pull request in the first place. The project owners needs to be able to determine whether your change is as useful to everyone as you think it is. Finally, click Create pull request.
Last modified February 20, 2022:
Moving contributing (3d0cb3a4)
+by Jeremy Vyska
diff --git a/docs/contributing/formattingtips/index.html b/docs/contributing/formattingtips/index.html
index 6c4da535..38c0eef5 100644
--- a/docs/contributing/formattingtips/index.html
+++ b/docs/contributing/formattingtips/index.html
@@ -615,6 +615,7 @@ Code Fences / Syntax highlighting The syntax to use codefences is with backticks
Last modified February 20, 2022:
Moving contributing (3d0cb3a4)
+by Jeremy Vyska
diff --git a/docs/contributing/index.html b/docs/contributing/index.html
index 127103c5..aeb28669 100644
--- a/docs/contributing/index.html
+++ b/docs/contributing/index.html
@@ -592,6 +592,7 @@
Last modified February 20, 2022:
Tweaks to the contributing page (c259acce)
+by Jeremy Vyska
diff --git a/docs/contributing/installhugo/index.html b/docs/contributing/installhugo/index.html
index 5aa25a9a..c12fa48c 100644
--- a/docs/contributing/installhugo/index.html
+++ b/docs/contributing/installhugo/index.html
@@ -566,6 +566,7 @@ For the …">
Last modified February 24, 2022:
Update _index.md (ee09ec59)
+by Jeremy Vyska
diff --git a/docs/contributing/installhugo/manuallyonwindows11/index.html b/docs/contributing/installhugo/manuallyonwindows11/index.html
index 9669870f..80e5c011 100644
--- a/docs/contributing/installhugo/manuallyonwindows11/index.html
+++ b/docs/contributing/installhugo/manuallyonwindows11/index.html
@@ -587,6 +587,7 @@ The theme that are used, needs the extended version of Hugo, so make sure to dow

Last modified February 23, 2022:
Remove extra blank line (5a85dcee)
+by Henrik Helgesen
diff --git a/docs/contributing/installhugo/usingpowershellonwindows11/index.html b/docs/contributing/installhugo/usingpowershellonwindows11/index.html
index 3b09585a..ae4c08db 100644
--- a/docs/contributing/installhugo/usingpowershellonwindows11/index.html
+++ b/docs/contributing/installhugo/usingpowershellonwindows11/index.html
@@ -566,6 +566,7 @@
Last modified February 24, 2022:
Install via Powersehll (d521d3ba)
+by Henrik Helgesen
diff --git a/docs/contributing/templates/bestpractice/index.html b/docs/contributing/templates/bestpractice/index.html
index f0257f51..39d90047 100644
--- a/docs/contributing/templates/bestpractice/index.html
+++ b/docs/contributing/templates/bestpractice/index.html
@@ -591,6 +591,7 @@ Description In depth description on what this Pattern is all about
diff --git a/docs/contributing/templates/index.html b/docs/contributing/templates/index.html
index 26f60d1c..3552c746 100644
--- a/docs/contributing/templates/index.html
+++ b/docs/contributing/templates/index.html
@@ -568,6 +568,7 @@ We currently …">
Last modified February 21, 2022:
Cleanup and fix link (eb783b94)
+by Henrik Helgesen
diff --git a/docs/contributing/templates/patterns/index.html b/docs/contributing/templates/patterns/index.html
index 6ec432a0..f5d01529 100644
--- a/docs/contributing/templates/patterns/index.html
+++ b/docs/contributing/templates/patterns/index.html
@@ -618,6 +618,7 @@ Description In depth description on what this Pattern is all about
Youtube-link? BaseApp? Tweet? …
diff --git a/docs/contributing/theapprovalprocess/index.html b/docs/contributing/theapprovalprocess/index.html
index fe8dcaa6..2479f524 100644
--- a/docs/contributing/theapprovalprocess/index.html
+++ b/docs/contributing/theapprovalprocess/index.html
@@ -550,6 +550,7 @@
(coming soon)
Last modified February 20, 2022:
Moving contributing (3d0cb3a4)
+by Jeremy Vyska
diff --git a/docs/index.html b/docs/index.html
index 3fadae8d..0e9ed6d8 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -606,6 +606,7 @@
Last modified February 24, 2022:
Update _index.md (5e676054)
+by waldo
diff --git a/docs/navpatterns/2-anti-patterns/index.html b/docs/navpatterns/2-anti-patterns/index.html
index 66c6eccb..db8aedd1 100644
--- a/docs/navpatterns/2-anti-patterns/index.html
+++ b/docs/navpatterns/2-anti-patterns/index.html
@@ -571,6 +571,7 @@
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/2-anti-patterns/nav-upgrade/index.html b/docs/navpatterns/2-anti-patterns/nav-upgrade/index.html
index 49001255..49522b59 100644
--- a/docs/navpatterns/2-anti-patterns/nav-upgrade/index.html
+++ b/docs/navpatterns/2-anti-patterns/nav-upgrade/index.html
@@ -623,6 +623,7 @@ If the table is empty, it means that either the upgrade has run, or there was no
Solution: Don’t assume you will have access to PaaS or SaaS machines. Build your solution in such a way that it doesn’t depend on executing manual configurations on the host machine.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/2-anti-patterns/reusable-bugs/index.html b/docs/navpatterns/2-anti-patterns/reusable-bugs/index.html
index 2b082055..4a325a0b 100644
--- a/docs/navpatterns/2-anti-patterns/reusable-bugs/index.html
+++ b/docs/navpatterns/2-anti-patterns/reusable-bugs/index.html
@@ -617,6 +617,7 @@ Abstract It is difficult to come up with new and different bugs in each release,
Disclaimer: this is inspired from IETF documentation published on April 1st, like for example the revolutionizing IP over Avian Carriers standard.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/by-reference-parameters/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/by-reference-parameters/index.html
index ed616f7a..81d2f408 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/by-reference-parameters/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/by-reference-parameters/index.html
@@ -597,6 +597,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/class-coupling/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/class-coupling/index.html
index d35b53b2..dc0b49b1 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/class-coupling/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/class-coupling/index.html
@@ -587,6 +587,7 @@ Class coupling is computed by summing the unique instances of the following in a
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/cyclomatic-complexity/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/cyclomatic-complexity/index.html
index 494baeba..d5e5f429 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/cyclomatic-complexity/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/cyclomatic-complexity/index.html
@@ -587,6 +587,7 @@ The CC3 version is computed by summing the following in a code block:
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/encapsulate-local-functionality/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/encapsulate-local-functionality/index.html
index d5f2b284..58cf99d8 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/encapsulate-local-functionality/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/encapsulate-local-functionality/index.html
@@ -568,6 +568,7 @@
Any function used local must be defined as local.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/findset-findfirst-findlast/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/findset-findfirst-findlast/index.html
index 7f64e177..181f9669 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/findset-findfirst-findlast/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/findset-findfirst-findlast/index.html
@@ -607,6 +607,7 @@ IF Cust.FINDSET THEN REPEAT ... UNTIL Cust.NEXT = 0; ">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/index.html
index f5fdf986..d23212c3 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/index.html
@@ -653,6 +653,7 @@ Find the C/AL guidelines by expanding the menu in the left.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/initialized-variables/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/initialized-variables/index.html
index 9d16c379..6abc91ff 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/initialized-variables/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/initialized-variables/index.html
@@ -618,6 +618,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/maintainability-index/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/maintainability-index/index.html
index e59cfcfc..32cd3ddb 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/maintainability-index/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/maintainability-index/index.html
@@ -600,6 +600,7 @@ A full C/AL Statement counts as 1 line of code
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/parameter-placeholders/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/parameter-placeholders/index.html
index 4580d01c..0f173375 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/parameter-placeholders/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/parameter-placeholders/index.html
@@ -602,6 +602,7 @@ ERROR(CannotUseThisFieldErr,Field.Class);
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/static-object-invocation/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/static-object-invocation/index.html
index 70348f61..c1d2c85d 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/static-object-invocation/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/static-object-invocation/index.html
@@ -590,6 +590,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/unreachable-code/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/unreachable-code/index.html
index 668326c2..00528316 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/unreachable-code/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/unreachable-code/index.html
@@ -597,6 +597,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/unused-initialized-variables/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/unused-initialized-variables/index.html
index 9dcbab93..c7d4859c 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/unused-initialized-variables/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/unused-initialized-variables/index.html
@@ -610,6 +610,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/unused-variables/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/unused-variables/index.html
index 45999e06..2fc5e466 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/unused-variables/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/unused-variables/index.html
@@ -619,6 +619,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/variable-capacity-mismatch/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/variable-capacity-mismatch/index.html
index 40fe7d9d..d588626c 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/variable-capacity-mismatch/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/variable-capacity-mismatch/index.html
@@ -636,6 +636,7 @@ BEGIN
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/design/with-scope-name-collision/index.html b/docs/navpatterns/3-cal-coding-guidelines/design/with-scope-name-collision/index.html
index e0217be4..19780e8b 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/design/with-scope-name-collision/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/design/with-scope-name-collision/index.html
@@ -599,6 +599,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/index.html b/docs/navpatterns/3-cal-coding-guidelines/index.html
index 45b74c3a..3502dcb1 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/index.html
@@ -606,6 +606,7 @@
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/internally-used-dot-net-types/index.html b/docs/navpatterns/3-cal-coding-guidelines/internally-used-dot-net-types/index.html
index f240658b..52f3a6ed 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/internally-used-dot-net-types/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/internally-used-dot-net-types/index.html
@@ -862,6 +862,7 @@ VisualizationScenarios">
‘System.Windows.Forms’.System.Windows.Forms.UICuesEventArgs
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/internationalization/index.html b/docs/navpatterns/3-cal-coding-guidelines/internationalization/index.html
index b2bc33ef..d96add44 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/internationalization/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/internationalization/index.html
@@ -581,6 +581,7 @@ Find the C/AL guidelines by expanding the menu in the left.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/internationalization/using-calcdate/index.html b/docs/navpatterns/3-cal-coding-guidelines/internationalization/using-calcdate/index.html
index da375df8..88ada1aa 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/internationalization/using-calcdate/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/internationalization/using-calcdate/index.html
@@ -588,6 +588,7 @@ THEN
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/localizability/captionml-for-system-tables/index.html b/docs/navpatterns/3-cal-coding-guidelines/localizability/captionml-for-system-tables/index.html
index ba040f2a..d5dd6aac 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/localizability/captionml-for-system-tables/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/localizability/captionml-for-system-tables/index.html
@@ -595,6 +595,7 @@ OBJECT Table 2000000000 User
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/localizability/fieldcaption-and-tablecaption/index.html b/docs/navpatterns/3-cal-coding-guidelines/localizability/fieldcaption-and-tablecaption/index.html
index afdb9642..40cb9eac 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/localizability/fieldcaption-and-tablecaption/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/localizability/fieldcaption-and-tablecaption/index.html
@@ -592,6 +592,7 @@ IFNOTCONFIRM(UpdateLocationQst,TRUE,FIELDCAPTION("Location Code"),...) "
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/localizability/global-text-constants/index.html b/docs/navpatterns/3-cal-coding-guidelines/localizability/global-text-constants/index.html
index e64caac0..80abdaa8 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/localizability/global-text-constants/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/localizability/global-text-constants/index.html
@@ -592,6 +592,7 @@ VARRequirementOptionsTxt@1002:TextConst'ENU=Shipment,Receive,Pick,Put-Away';...
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/localizability/index.html b/docs/navpatterns/3-cal-coding-guidelines/localizability/index.html
index 01eb2479..af21aa47 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/localizability/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/localizability/index.html
@@ -599,6 +599,7 @@ Find the C/AL guidelines by expanding the menu in the left.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/localizability/use-text-constants/index.html b/docs/navpatterns/3-cal-coding-guidelines/localizability/use-text-constants/index.html
index bea3096b..ad07b4e7 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/localizability/use-text-constants/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/localizability/use-text-constants/index.html
@@ -609,6 +609,7 @@ DiffOnPeriodEntiesQst@100:TextConst'ENU="Difference on Periodic entries: %1
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/localizability/using-optioncaptionml/index.html b/docs/navpatterns/3-cal-coding-guidelines/localizability/using-optioncaptionml/index.html
index ab22331d..bf8405ff 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/localizability/using-optioncaptionml/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/localizability/using-optioncaptionml/index.html
@@ -594,6 +594,7 @@ Selection@1008 : 'Open,Closed,Open and Closed';
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/begin-as-an-afterword/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/begin-as-an-afterword/index.html
index c9345af6..1a2eabfa 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/begin-as-an-afterword/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/begin-as-an-afterword/index.html
@@ -589,6 +589,7 @@ END;
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/begin-end/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/begin-end/index.html
index 7efc45cb..492ce6ca 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/begin-end/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/begin-end/index.html
@@ -637,6 +637,7 @@ IFFINDSETTHENREPEAT... UNTILNEXT=0;Exception
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/binary-operator-line-start/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/binary-operator-line-start/index.html
index d4b930d4..3760385c 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/binary-operator-line-start/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/binary-operator-line-start/index.html
@@ -591,6 +591,7 @@ Bad code
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/blank-lines/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/blank-lines/index.html
index cdcaa497..376fc3b8 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/blank-lines/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/blank-lines/index.html
@@ -606,6 +606,7 @@ IFNameIsValidANDName2IsValidTHENGood code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/case-actions/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/case-actions/index.html
index 8875dd6a..a94dee9d 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/case-actions/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/case-actions/index.html
@@ -589,6 +589,7 @@ CASELetterOF'A':Letter2:='10';'B':Letter2:='11';Good code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/colon-usage-in-case/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/colon-usage-in-case/index.html
index d0088ddb..aefd066c 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/colon-usage-in-case/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/colon-usage-in-case/index.html
@@ -589,6 +589,7 @@ CASEDimOptionOFDimOption::"Global Dimension 1":DimValue."Dimension C
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/comments-curly-brackets/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/comments-curly-brackets/index.html
index ab16ac69..054f53f1 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/comments-curly-brackets/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/comments-curly-brackets/index.html
@@ -605,6 +605,7 @@ PROCEDUREMATRIX_OnAfterGetRecord@10(MATRIX_ColumnOrdinal:Integer);BEGIN{IFShowCo
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/comments-spacing/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/comments-spacing/index.html
index 02e0e828..9a593370 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/comments-spacing/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/comments-spacing/index.html
@@ -586,6 +586,7 @@ RowNo+=1000;// Move way below the budget ">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/end-else-pair/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/end-else-pair/index.html
index 9393a6f3..51db1f90 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/end-else-pair/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/end-else-pair/index.html
@@ -594,6 +594,7 @@ IFOppEntry.FIND('-') THENIFSalesCycleStage.FIND('-') THENBEGIN... ENDELSE... ">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/indentation/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/indentation/index.html
index 344cca32..4ef67244 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/indentation/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/indentation/index.html
@@ -644,6 +644,7 @@ TempOldCustLedgEntry.DELETE;// Find the next old entry for application of the ne
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/index.html
index 50256d90..32c3b70b 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/index.html
@@ -762,6 +762,7 @@ Generally, all readability rules are Microsoft style choices only. You can use t
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/keyword-pairs-indentation/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/keyword-pairs-indentation/index.html
index d7bb3853..ff354c0d 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/keyword-pairs-indentation/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/keyword-pairs-indentation/index.html
@@ -588,6 +588,7 @@ IF(x=y) AND(a=b) THEN">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/line-start-keywords/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/line-start-keywords/index.html
index e4fd3eda..efcb8d20 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/line-start-keywords/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/line-start-keywords/index.html
@@ -591,6 +591,7 @@ IFIsContactNameTHENValidateContactNameELSEIFIsSalespersonCodeTHENValidateSalespe
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/lonely-repeat/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/lonely-repeat/index.html
index 10ca510f..70fb3135 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/lonely-repeat/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/lonely-repeat/index.html
@@ -588,6 +588,7 @@ IFReservEntry.FINDSETTHENREPEATGood code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/named-invocations/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/named-invocations/index.html
index 3472b795..27906eb2 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/named-invocations/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/named-invocations/index.html
@@ -586,6 +586,7 @@ PAGE.RUNMODAL(PAGE::"Posted Sales Shipment Lines",SalesShptLine) ">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/nested-withs/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/nested-withs/index.html
index b7d30641..0b5c6faa 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/nested-withs/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/nested-withs/index.html
@@ -595,6 +595,7 @@ WITHPostedWhseShptLineDOBEGIN... InsertBufferRec(...,ItemLedgEntry."Serial N
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/one-statement-per-line/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/one-statement-per-line/index.html
index a08726b6..607a25cd 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/one-statement-per-line/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/one-statement-per-line/index.html
@@ -599,6 +599,7 @@ TotalCost+=Cost;TotalAmt+=Amt;Good code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/separate-if-and-else/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/separate-if-and-else/index.html
index f30b6dba..13600507 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/separate-if-and-else/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/separate-if-and-else/index.html
@@ -592,6 +592,7 @@ IFAtom[i+1]='>'THENHasLogicalOperator:=TRUEELSEBEGIN... END;">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-binary-operators/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-binary-operators/index.html
index 3d8a2eed..920a0192 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-binary-operators/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-binary-operators/index.html
@@ -602,6 +602,7 @@ StartDate:=0D;// Initialize ">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-brackets-and/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-brackets-and/index.html
index 1fa87429..ca126a55 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-brackets-and/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-brackets-and/index.html
@@ -606,6 +606,7 @@ IFFIND(Which) THEN">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-unary-operators/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-unary-operators/index.html
index 23c62065..38f5c987 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-unary-operators/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/spacing-unary-operators/index.html
@@ -596,6 +596,7 @@ DiscAmt:=-"Discount Amount";">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/suggested-abbreviations/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/suggested-abbreviations/index.html
index b4fc5e3a..9a66eaef 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/suggested-abbreviations/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/suggested-abbreviations/index.html
@@ -1413,6 +1413,7 @@ Asm">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/temporary-variable-naming/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/temporary-variable-naming/index.html
index cd9d246a..5c1ef517 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/temporary-variable-naming/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/temporary-variable-naming/index.html
@@ -592,6 +592,7 @@ TempJobWIPBuffer@1002:Record1018;Good code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/textconst-suffixes/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/textconst-suffixes/index.html
index 472c46d1..aea6509c 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/textconst-suffixes/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/textconst-suffixes/index.html
@@ -647,6 +647,7 @@ TypeHasBeenChangedErr@1011:TextConst'ENU="has been changed (initial a %1: %2
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/unary-operator-line-end/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/unary-operator-line-end/index.html
index 747cdcf7..ea593667 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/unary-operator-line-end/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/unary-operator-line-end/index.html
@@ -589,6 +589,7 @@ Bad code
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-compound-parenthesis/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-compound-parenthesis/index.html
index a631b63b..b6cbcc30 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-compound-parenthesis/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-compound-parenthesis/index.html
@@ -591,6 +591,7 @@ ProfitPct=-(Profit) /CostAmt*100;Good code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-else/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-else/index.html
index 6cc0693c..1b1fe0b2 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-else/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-else/index.html
@@ -590,6 +590,7 @@ IFIsAdjmtBinCodeChangedTHENERROR(AdjmtBinCodeChangeNotAllowedErr,...) ERROR(BinC
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-function-parenthesis/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-function-parenthesis/index.html
index c38a863c..b701bdcb 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-function-parenthesis/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-function-parenthesis/index.html
@@ -593,6 +593,7 @@ IFChangeStatusForm.RUNMODAL() <>ACTION::YesTHENGood code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-separators/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-separators/index.html
index 8c83ed81..711b218c 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-separators/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-separators/index.html
@@ -584,6 +584,7 @@ IFCustomer.FINDFIRSTTHEN;;Good code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-truefalse/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-truefalse/index.html
index 01456f53..e0d2b683 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-truefalse/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/unnecessary-truefalse/index.html
@@ -592,6 +592,7 @@ IF Complete <> TRUE THEN Good code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/variable-already-scoped/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/variable-already-scoped/index.html
index 42d2dee8..61f8e812 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/variable-already-scoped/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/variable-already-scoped/index.html
@@ -601,6 +601,7 @@ WITHChangeLogSetupTableDOBEGIN... IFDELETETHEN... END;">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/variable-naming/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/variable-naming/index.html
index 157ef9d3..00fee781 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/variable-naming/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/variable-naming/index.html
@@ -623,6 +623,7 @@ Bad code
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/readability/variables-declarations-order/index.html b/docs/navpatterns/3-cal-coding-guidelines/readability/variables-declarations-order/index.html
index ea66be89..e70bccac 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/readability/variables-declarations-order/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/readability/variables-declarations-order/index.html
@@ -581,6 +581,7 @@ StartingDateFilter@1002:Text[30];Vend@1003:Record23;Good code">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/ux/actions-images/index.html b/docs/navpatterns/3-cal-coding-guidelines/ux/actions-images/index.html
index 3ea51390..dec202cf 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/ux/actions-images/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/ux/actions-images/index.html
@@ -587,6 +587,7 @@ Bad code
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/ux/confirm/index.html b/docs/navpatterns/3-cal-coding-guidelines/ux/confirm/index.html
index cfd74a5d..19479e55 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/ux/confirm/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/ux/confirm/index.html
@@ -587,6 +587,7 @@ ChangeAllOpenedEntriesQst@1000:TextConst'ENU=Do you want to change all open entr
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/ux/fielderror/index.html b/docs/navpatterns/3-cal-coding-guidelines/ux/fielderror/index.html
index 7ca21ad9..1eab9bc2 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/ux/fielderror/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/ux/fielderror/index.html
@@ -589,6 +589,7 @@ InvalidValue@1025:TextConst'ENU=is invalid';... Cust.">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/ux/index.html b/docs/navpatterns/3-cal-coding-guidelines/ux/index.html
index 51222232..7a4ec0fc 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/ux/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/ux/index.html
@@ -593,6 +593,7 @@ Find the C/AL guidelines by expanding the menu in the left.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/3-cal-coding-guidelines/ux/message-and-error/index.html b/docs/navpatterns/3-cal-coding-guidelines/ux/message-and-error/index.html
index 95b1fe58..c4440cde 100644
--- a/docs/navpatterns/3-cal-coding-guidelines/ux/message-and-error/index.html
+++ b/docs/navpatterns/3-cal-coding-guidelines/ux/message-and-error/index.html
@@ -587,6 +587,7 @@ CustIsBlockedErr@1025:TextConst'ENU=You cannot %1 this type of document when Cus
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/4-get-involved/code-of-conduct/index.html b/docs/navpatterns/4-get-involved/code-of-conduct/index.html
index 7b0f20fe..a76f4744 100644
--- a/docs/navpatterns/4-get-involved/code-of-conduct/index.html
+++ b/docs/navpatterns/4-get-involved/code-of-conduct/index.html
@@ -571,6 +571,7 @@ Only use materials published in text on the NAV Design …">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/4-get-involved/index.html b/docs/navpatterns/4-get-involved/index.html
index 5b0e006f..2f76dd4d 100644
--- a/docs/navpatterns/4-get-involved/index.html
+++ b/docs/navpatterns/4-get-involved/index.html
@@ -590,6 +590,7 @@ NAV Design Patterns are excellent materials for …">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/4-get-involved/patterns-authors/index.html b/docs/navpatterns/4-get-involved/patterns-authors/index.html
index b954edaa..c802de85 100644
--- a/docs/navpatterns/4-get-involved/patterns-authors/index.html
+++ b/docs/navpatterns/4-get-involved/patterns-authors/index.html
@@ -863,6 +863,7 @@ _ (2 patterns)
And last but not least, we have collaborated with Plataan who hired Eric Wauters from ifacto and Mark Brummel from Brummel Dynamics Services and PRS, to publish on video some of our patterns.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/4-get-involved/template-for-writing-nav-design-patterns/index.html b/docs/navpatterns/4-get-involved/template-for-writing-nav-design-patterns/index.html
index f40f1416..4f1960ce 100644
--- a/docs/navpatterns/4-get-involved/template-for-writing-nav-design-patterns/index.html
+++ b/docs/navpatterns/4-get-involved/template-for-writing-nav-design-patterns/index.html
@@ -618,6 +618,7 @@ Forces: (explain why the problem is difficult to solve; state the considerations
List of references
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/index.html b/docs/navpatterns/index.html
index 81a29a69..da0746a8 100644
--- a/docs/navpatterns/index.html
+++ b/docs/navpatterns/index.html
@@ -591,6 +591,7 @@ This section of the site is a careful reproduction of the content of the Origina
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/activity-log/index.html b/docs/navpatterns/patterns/activity-log/index.html
index 0de20735..b745c4a5 100644
--- a/docs/navpatterns/patterns/activity-log/index.html
+++ b/docs/navpatterns/patterns/activity-log/index.html
@@ -652,6 +652,7 @@ In general, integrating with external systems can be very challenging, due to th
Audit Log – as mentioned in the beginning, this pattern is a NAV specific implementation of the audit log pattern.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/argument-table/index.html b/docs/navpatterns/patterns/argument-table/index.html
index 71a94923..31496bcf 100644
--- a/docs/navpatterns/patterns/argument-table/index.html
+++ b/docs/navpatterns/patterns/argument-table/index.html
@@ -655,6 +655,7 @@ When an argument needs to be added to the function, the existing function needs
Posting Routine, Select behavior: Setting fields on existing records in order not to change the signatures.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/blocked-entity/data-driven-blocked-entity/index.html b/docs/navpatterns/patterns/blocked-entity/data-driven-blocked-entity/index.html
index 3735a918..853a34d8 100644
--- a/docs/navpatterns/patterns/blocked-entity/data-driven-blocked-entity/index.html
+++ b/docs/navpatterns/patterns/blocked-entity/data-driven-blocked-entity/index.html
@@ -651,6 +651,7 @@ Problem A NAV record can be used in a number of functionalities across the app.
This pattern has been introduced in Dynamics NAV 2016.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/blocked-entity/index.html b/docs/navpatterns/patterns/blocked-entity/index.html
index 93448558..6eefec45 100644
--- a/docs/navpatterns/patterns/blocked-entity/index.html
+++ b/docs/navpatterns/patterns/blocked-entity/index.html
@@ -641,6 +641,7 @@ The Blocked Entity is used when it is required to stop transactions …">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/cached-web-service-calls/index.html b/docs/navpatterns/patterns/cached-web-service-calls/index.html
index 6f813820..c36e6ad0 100644
--- a/docs/navpatterns/patterns/cached-web-service-calls/index.html
+++ b/docs/navpatterns/patterns/cached-web-service-calls/index.html
@@ -686,6 +686,7 @@ Description When NAV is integrated with external services, then the user scenari
Expose the refresh rate through a setup table to make it easily configurable without changing the code.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/conditional-cascading-update/index.html b/docs/navpatterns/patterns/conditional-cascading-update/index.html
index a2ed6710..8b7b1154 100644
--- a/docs/navpatterns/patterns/conditional-cascading-update/index.html
+++ b/docs/navpatterns/patterns/conditional-cascading-update/index.html
@@ -594,6 +594,7 @@ Description The value of one table field sometimes depends on the value of anoth
There is a case when this pattern should not be used. If the target field is non-editable, this pattern will not add any value, since there won’t be any user-overridden values to protect.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/copy-document/index.html b/docs/navpatterns/patterns/copy-document/index.html
index 5b6d7836..35ab8251 100644
--- a/docs/navpatterns/patterns/copy-document/index.html
+++ b/docs/navpatterns/patterns/copy-document/index.html
@@ -663,6 +663,7 @@ Description Documents are widely used by most of our customers. Many times, a si
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/create-data-from-templates/index.html b/docs/navpatterns/patterns/create-data-from-templates/index.html
index 308f5e46..1b53ddfd 100644
--- a/docs/navpatterns/patterns/create-data-from-templates/index.html
+++ b/docs/navpatterns/patterns/create-data-from-templates/index.html
@@ -740,6 +740,7 @@ We can group sets of data as templates to speed up and simplify the process of e
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/create-urls-to-nav-clients/index.html b/docs/navpatterns/patterns/create-urls-to-nav-clients/index.html
index 98154b87..77eaa2b6 100644
--- a/docs/navpatterns/patterns/create-urls-to-nav-clients/index.html
+++ b/docs/navpatterns/patterns/create-urls-to-nav-clients/index.html
@@ -854,6 +854,7 @@ The URL builder function, GETURL, is released in Microsoft Dynamics NAV 2013 R2
The first link opens the approval document in the Microsoft Dynamics NAV Windows client. The second link (Web view) opens the same document in the Microsoft Dynamics NAV web client.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/creating-custom-charts/index.html b/docs/navpatterns/patterns/creating-custom-charts/index.html
index 532f273a..55ba8e2b 100644
--- a/docs/navpatterns/patterns/creating-custom-charts/index.html
+++ b/docs/navpatterns/patterns/creating-custom-charts/index.html
@@ -721,6 +721,7 @@ Abstract The goal of this solution is to enable you to:
As a nice-to-have feature, we could implement functionality to cycle through the charts with a timer.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/cross-session-events/index.html b/docs/navpatterns/patterns/cross-session-events/index.html
index 76cb39ab..468f843f 100644
--- a/docs/navpatterns/patterns/cross-session-events/index.html
+++ b/docs/navpatterns/patterns/cross-session-events/index.html
@@ -768,6 +768,7 @@ Problem In Microsoft Dynamics NAV you can fire a function whenever something cha
https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/currently-active-record/index.html b/docs/navpatterns/patterns/currently-active-record/index.html
index 1c5f3689..6d911ee5 100644
--- a/docs/navpatterns/patterns/currently-active-record/index.html
+++ b/docs/navpatterns/patterns/currently-active-record/index.html
@@ -698,6 +698,7 @@ The Pattern makes a scalable solution with a predictable performance. The perfor
The idea of having a linked table object pointing to a view could be a pattern of its own.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/data-migration-facade/index.html b/docs/navpatterns/patterns/data-migration-facade/index.html
index be74399e..7bfccb17 100644
--- a/docs/navpatterns/patterns/data-migration-facade/index.html
+++ b/docs/navpatterns/patterns/data-migration-facade/index.html
@@ -856,6 +856,7 @@ This starts the migration. False means this is not a retry. A re-try is when you
Façade pattern on Wikipedia: https://en.wikipedia.org/wiki/Facade_pattern
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/discovery-event/index.html b/docs/navpatterns/patterns/discovery-event/index.html
index 092db511..1c49e53f 100644
--- a/docs/navpatterns/patterns/discovery-event/index.html
+++ b/docs/navpatterns/patterns/discovery-event/index.html
@@ -621,6 +621,7 @@ You see I can use the “sender” as a normal Record-variable. I access
This pattern only works with Microsoft Dynamics NAV 2016 and up.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/document/index.html b/docs/navpatterns/patterns/document/index.html
index 3ca8b184..8a20561c 100644
--- a/docs/navpatterns/patterns/document/index.html
+++ b/docs/navpatterns/patterns/document/index.html
@@ -654,6 +654,7 @@ Description This pattern should be used as a basis to build any document, showin
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/easy-update-of-setup-or-supplementary-information/index.html b/docs/navpatterns/patterns/easy-update-of-setup-or-supplementary-information/index.html
index 5a82ddea..142f7360 100644
--- a/docs/navpatterns/patterns/easy-update-of-setup-or-supplementary-information/index.html
+++ b/docs/navpatterns/patterns/easy-update-of-setup-or-supplementary-information/index.html
@@ -635,6 +635,7 @@ SetupTable.VerifyAndSetX
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/error-message-processing/index.html b/docs/navpatterns/patterns/error-message-processing/index.html
index 8ae574c6..769c92d5 100644
--- a/docs/navpatterns/patterns/error-message-processing/index.html
+++ b/docs/navpatterns/patterns/error-message-processing/index.html
@@ -651,6 +651,7 @@ Abstract Missing, invalid or incomplete data is a common issue during data proce
By using this easy to use component, we have the possibility to extend this functionality going forward. A nice addition to the error message component would be the possibility to log the error messages persistently in a grouped manner, thereby allowing 3rd parties to see the issues the users bump into the most, or allowing 3rd parties to get an detailed insight into what happened, thereby enabling them to provide better support.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/extending-the-role-center-headlines/index.html b/docs/navpatterns/patterns/extending-the-role-center-headlines/index.html
index ba385e71..48fc551f 100644
--- a/docs/navpatterns/patterns/extending-the-role-center-headlines/index.html
+++ b/docs/navpatterns/patterns/extending-the-role-center-headlines/index.html
@@ -703,6 +703,7 @@ If no headline is added on these pages, fallback headlines will be displayed.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/feature-localization-for-data-structures/index.html b/docs/navpatterns/patterns/feature-localization-for-data-structures/index.html
index 4e92c8e0..e34029f7 100644
--- a/docs/navpatterns/patterns/feature-localization-for-data-structures/index.html
+++ b/docs/navpatterns/patterns/feature-localization-for-data-structures/index.html
@@ -807,6 +807,7 @@ Description It sometimes happens that certain features are requested in a NAV-su
Also, there is a strong need for thorough testing when using this pattern, because there might be differences in the behavior of the local table and table 81. Whatever is acceptable for the local table may not be acceptable for the W1 table. A deep functional analysis is needed to see if the local export feature uses the same constraints as the W1 feature.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/hooks/index.html b/docs/navpatterns/patterns/hooks/index.html
index cd3db6d9..1b288793 100644
--- a/docs/navpatterns/patterns/hooks/index.html
+++ b/docs/navpatterns/patterns/hooks/index.html
@@ -651,6 +651,7 @@ Description When doing development over years, by different developers with diff
See here a comparison / extension of hooks : http://www.waldo.be/2016/02/29/nav-2016-hooks-or-events/
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/implementation-of-surrogate-keys-using-autoincrement-pattern/index.html b/docs/navpatterns/patterns/implementation-of-surrogate-keys-using-autoincrement-pattern/index.html
index e0f00147..90badeca 100644
--- a/docs/navpatterns/patterns/implementation-of-surrogate-keys-using-autoincrement-pattern/index.html
+++ b/docs/navpatterns/patterns/implementation-of-surrogate-keys-using-autoincrement-pattern/index.html
@@ -652,6 +652,7 @@ To minimize the impact of customizations and to keep modules as generic and reus
This is related to the hook pattern as far as they both try to reduce the footprint changes have on the standard application, by creating reusable ways to interact with the standard code. That said the hook pattern is more about hooking the functionality to existing while this pattern is more about creating reusable ways of creating functionality.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/index.html b/docs/navpatterns/patterns/index.html
index 2967bd2c..c1ce47f6 100644
--- a/docs/navpatterns/patterns/index.html
+++ b/docs/navpatterns/patterns/index.html
@@ -851,6 +851,7 @@ Please note that these patterns may not be up-to-date with the patterns for AL a
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/instructions-in-the-ui/index.html b/docs/navpatterns/patterns/instructions-in-the-ui/index.html
index dea8fa89..268f7d6a 100644
--- a/docs/navpatterns/patterns/instructions-in-the-ui/index.html
+++ b/docs/navpatterns/patterns/instructions-in-the-ui/index.html
@@ -668,6 +668,7 @@ Description Users must often go through a few days of training to learn how to u
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/integration-of-addresses/index.html b/docs/navpatterns/patterns/integration-of-addresses/index.html
index 5a45eb5a..a1af2dac 100644
--- a/docs/navpatterns/patterns/integration-of-addresses/index.html
+++ b/docs/navpatterns/patterns/integration-of-addresses/index.html
@@ -571,6 +571,7 @@
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/journal-error-processing/index.html b/docs/navpatterns/patterns/journal-error-processing/index.html
index d5817857..3de8808d 100644
--- a/docs/navpatterns/patterns/journal-error-processing/index.html
+++ b/docs/navpatterns/patterns/journal-error-processing/index.html
@@ -731,6 +731,7 @@ Description Scenario: A user has entered data on a journal line and proceeds to
We can also improve by helping users find the place where they must fix the error by providing auto-navigation to the required page.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/journal-template-batch-line/index.html b/docs/navpatterns/patterns/journal-template-batch-line/index.html
index f3e68423..07c316f8 100644
--- a/docs/navpatterns/patterns/journal-template-batch-line/index.html
+++ b/docs/navpatterns/patterns/journal-template-batch-line/index.html
@@ -738,6 +738,7 @@ Journal templates are used to specify the underlying journal structure and to pr
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/master-data/index.html b/docs/navpatterns/patterns/master-data/index.html
index 582ee7f0..dfac651f 100644
--- a/docs/navpatterns/patterns/master-data/index.html
+++ b/docs/navpatterns/patterns/master-data/index.html
@@ -731,6 +731,7 @@ It is being used for creating a master data entity and can roughly be divided in
Patterns that are typically used in connection with the Master Data Pattern could be the “No. Series”, “Address Integration” and/or the “Entity State” design patterns., Master Data are central to almost everything we do, so most patterns connect in one way or another to the Master Data Pattern.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/multi-file-download/index.html b/docs/navpatterns/patterns/multi-file-download/index.html
index 99ff5c7e..481d01af 100644
--- a/docs/navpatterns/patterns/multi-file-download/index.html
+++ b/docs/navpatterns/patterns/multi-file-download/index.html
@@ -644,6 +644,7 @@ Description When generating reports that consists of multiple, and usually an un
System.IO.Compression.ZipFile
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/multi-page-list/index.html b/docs/navpatterns/patterns/multi-page-list/index.html
index f161c964..5cf9d987 100644
--- a/docs/navpatterns/patterns/multi-page-list/index.html
+++ b/docs/navpatterns/patterns/multi-page-list/index.html
@@ -664,6 +664,7 @@ Description The example below illustrates the connection of a List Page with mul
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/multilanguage-application-data/index.html b/docs/navpatterns/patterns/multilanguage-application-data/index.html
index 5fa8a06b..f477b75d 100644
--- a/docs/navpatterns/patterns/multilanguage-application-data/index.html
+++ b/docs/navpatterns/patterns/multilanguage-application-data/index.html
@@ -671,6 +671,7 @@ But there is one more scenario. In this scenario, Cronus International Ltd., wan
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/net-exception-handling-in-cal/index.html b/docs/navpatterns/patterns/net-exception-handling-in-cal/index.html
index b7cd1a0e..067813bd 100644
--- a/docs/navpatterns/patterns/net-exception-handling-in-cal/index.html
+++ b/docs/navpatterns/patterns/net-exception-handling-in-cal/index.html
@@ -754,6 +754,7 @@ When there is a need to use .NET classes within C/AL, one of the main …">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/net-exception-handling-in-cal/tryfunction-net-exception-handling-in-cal/index.html b/docs/navpatterns/patterns/net-exception-handling-in-cal/tryfunction-net-exception-handling-in-cal/index.html
index 81c88249..5f105cdf 100644
--- a/docs/navpatterns/patterns/net-exception-handling-in-cal/tryfunction-net-exception-handling-in-cal/index.html
+++ b/docs/navpatterns/patterns/net-exception-handling-in-cal/tryfunction-net-exception-handling-in-cal/index.html
@@ -770,6 +770,7 @@ Abstract When there is a need to use .NET classes within C/AL, one of the main c
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/no-series/index.html b/docs/navpatterns/patterns/no-series/index.html
index 0a8a3b35..dd7563d9 100644
--- a/docs/navpatterns/patterns/no-series/index.html
+++ b/docs/navpatterns/patterns/no-series/index.html
@@ -806,6 +806,7 @@ Description Documents and entities of any type (invoices, orders, customers, inv
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/notifications/in-context-notifications/index.html b/docs/navpatterns/patterns/notifications/in-context-notifications/index.html
index ad30ed5f..8dd46597 100644
--- a/docs/navpatterns/patterns/notifications/in-context-notifications/index.html
+++ b/docs/navpatterns/patterns/notifications/in-context-notifications/index.html
@@ -724,6 +724,7 @@ Problem Application developers have started to use system calls like CONFIRM or
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/notifications/index.html b/docs/navpatterns/patterns/notifications/index.html
index de629beb..67f72437 100644
--- a/docs/navpatterns/patterns/notifications/index.html
+++ b/docs/navpatterns/patterns/notifications/index.html
@@ -577,6 +577,7 @@
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/notifications/notification-lifecycle-management-pattern/index.html b/docs/navpatterns/patterns/notifications/notification-lifecycle-management-pattern/index.html
index 85128f89..0072ef21 100644
--- a/docs/navpatterns/patterns/notifications/notification-lifecycle-management-pattern/index.html
+++ b/docs/navpatterns/patterns/notifications/notification-lifecycle-management-pattern/index.html
@@ -732,6 +732,7 @@ Notifications are easy to use in a wide range of cases. Instead of using notific
Singleton codeunit
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/observer/index.html b/docs/navpatterns/patterns/observer/index.html
index 35504aa3..3ae63758 100644
--- a/docs/navpatterns/patterns/observer/index.html
+++ b/docs/navpatterns/patterns/observer/index.html
@@ -675,6 +675,7 @@ Solution Create a setup table to define which other tables you want to track cha
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/posting-routine-select-behavior/index.html b/docs/navpatterns/patterns/posting-routine-select-behavior/index.html
index 42c350d0..c417b1d2 100644
--- a/docs/navpatterns/patterns/posting-routine-select-behavior/index.html
+++ b/docs/navpatterns/patterns/posting-routine-select-behavior/index.html
@@ -625,6 +625,7 @@ Description For a processing routine to behave correctly, it needs sometimes inp
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/product-name/index.html b/docs/navpatterns/patterns/product-name/index.html
index 987800e3..acba19f5 100644
--- a/docs/navpatterns/patterns/product-name/index.html
+++ b/docs/navpatterns/patterns/product-name/index.html
@@ -593,6 +593,7 @@ Problem When you want to refer to product name in informational messages or erro
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/queries/index.html b/docs/navpatterns/patterns/queries/index.html
index 1c1be7b5..4c7b67a0 100644
--- a/docs/navpatterns/patterns/queries/index.html
+++ b/docs/navpatterns/patterns/queries/index.html
@@ -583,6 +583,7 @@
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/queries/select-distinct-with-queries/index.html b/docs/navpatterns/patterns/queries/select-distinct-with-queries/index.html
index dc75300a..4dc09726 100644
--- a/docs/navpatterns/patterns/queries/select-distinct-with-queries/index.html
+++ b/docs/navpatterns/patterns/queries/select-distinct-with-queries/index.html
@@ -629,6 +629,7 @@ Let’s consider the VAT Entry table as below:">
A variation using loops could be described, for C/AL development on NAV 6 where query objects are not available.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/queries/use-queries-to-detect-duplicate-records/index.html b/docs/navpatterns/patterns/queries/use-queries-to-detect-duplicate-records/index.html
index e970f339..adfa81b0 100644
--- a/docs/navpatterns/patterns/queries/use-queries-to-detect-duplicate-records/index.html
+++ b/docs/navpatterns/patterns/queries/use-queries-to-detect-duplicate-records/index.html
@@ -649,6 +649,7 @@ methods CheckDuplicateAnalysisLineDescription and CheckDuplicateAnalysisColumnHe
A new query object is needed for every type of duplicate check. This could easily explode and create a maintenance problem.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/queries/use-queries-to-replace-nested-loops/index.html b/docs/navpatterns/patterns/queries/use-queries-to-replace-nested-loops/index.html
index 057d1c34..3b3a7d09 100644
--- a/docs/navpatterns/patterns/queries/use-queries-to-replace-nested-loops/index.html
+++ b/docs/navpatterns/patterns/queries/use-queries-to-replace-nested-loops/index.html
@@ -741,6 +741,7 @@ Description One of the core operations in a relational database is joining two o
The query object type could be improved to allow the passing of parameters at runtime, or, in general, being built dynamically at runtime. This will remove the need for multiple static definitions of the same base query used in slightly different contexts.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/read-once-initialization-and-validation/index.html b/docs/navpatterns/patterns/read-once-initialization-and-validation/index.html
index 6e4dd147..c9f423aa 100644
--- a/docs/navpatterns/patterns/read-once-initialization-and-validation/index.html
+++ b/docs/navpatterns/patterns/read-once-initialization-and-validation/index.html
@@ -615,6 +615,7 @@ If you need to query a setup table, but not sure if the table is yet in memory f
This is related to the Singleton Table pattern.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/released-entity/index.html b/docs/navpatterns/patterns/released-entity/index.html
index 6a0774cb..50db0585 100644
--- a/docs/navpatterns/patterns/released-entity/index.html
+++ b/docs/navpatterns/patterns/released-entity/index.html
@@ -656,6 +656,7 @@ If there is a need for shuffling between states back and forth, then this is not
When talking about hierarchical data structures and the Release State is held on the root node, there is a pattern called Hierarchical Locking that has some resemblance.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/report-selection/index.html b/docs/navpatterns/patterns/report-selection/index.html
index e0a9cdc2..7f1a1f99 100644
--- a/docs/navpatterns/patterns/report-selection/index.html
+++ b/docs/navpatterns/patterns/report-selection/index.html
@@ -683,6 +683,7 @@ Meet the Pattern It should be possible to change which document report object sh
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/security/1-sensitive-data-encapsulation/index.html b/docs/navpatterns/patterns/security/1-sensitive-data-encapsulation/index.html
index b756f506..610a07b3 100644
--- a/docs/navpatterns/patterns/security/1-sensitive-data-encapsulation/index.html
+++ b/docs/navpatterns/patterns/security/1-sensitive-data-encapsulation/index.html
@@ -647,6 +647,7 @@ Problem: Sensitive data is scattered and mixed with other data in various parts
[12] “sniffer,” [Online]. Available: http://compnetworking.about.com/od/networksecurityprivacy/g/bldef_sniffer.htm. [Accessed 02 08 2016].
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/security/2-data-encryption/index.html b/docs/navpatterns/patterns/security/2-data-encryption/index.html
index a3c14d9c..61d64aaf 100644
--- a/docs/navpatterns/patterns/security/2-data-encryption/index.html
+++ b/docs/navpatterns/patterns/security/2-data-encryption/index.html
@@ -709,6 +709,7 @@ Forces:
[12] “sniffer,” [Online]. Available: http://compnetworking.about.com/od/networksecurityprivacy/g/bldef_sniffer.htm. [Accessed 02 08 2016].
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/security/3-single-point-of-access/index.html b/docs/navpatterns/patterns/security/3-single-point-of-access/index.html
index 2390ab74..c1ce9940 100644
--- a/docs/navpatterns/patterns/security/3-single-point-of-access/index.html
+++ b/docs/navpatterns/patterns/security/3-single-point-of-access/index.html
@@ -627,6 +627,7 @@ Problem: If no standard way of accessing data exists, then each entity might att
[12] “sniffer,” [Online]. Available: http://compnetworking.about.com/od/networksecurityprivacy/g/bldef_sniffer.htm. [Accessed 02 08 2016].
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/security/4-masked-text/index.html b/docs/navpatterns/patterns/security/4-masked-text/index.html
index a483e825..0f579c9e 100644
--- a/docs/navpatterns/patterns/security/4-masked-text/index.html
+++ b/docs/navpatterns/patterns/security/4-masked-text/index.html
@@ -630,6 +630,7 @@ Forces:
[12] “sniffer,” [Online]. Available: http://compnetworking.about.com/od/networksecurityprivacy/g/bldef_sniffer.htm. [Accessed 02 08 2016].
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/security/5-ssl-in-nav/index.html b/docs/navpatterns/patterns/security/5-ssl-in-nav/index.html
index 4a6d7048..85cc8710 100644
--- a/docs/navpatterns/patterns/security/5-ssl-in-nav/index.html
+++ b/docs/navpatterns/patterns/security/5-ssl-in-nav/index.html
@@ -611,6 +611,7 @@ Context: The security of data transmission is just as important as the security
[12] “sniffer,” [Online]. Available: http://compnetworking.about.com/od/networksecurityprivacy/g/bldef_sniffer.htm. [Accessed 02 08 2016].
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/security/index.html b/docs/navpatterns/patterns/security/index.html
index 4be439ae..7b52a03e 100644
--- a/docs/navpatterns/patterns/security/index.html
+++ b/docs/navpatterns/patterns/security/index.html
@@ -617,6 +617,7 @@ When sensitive data is stored inside the …">
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/setup-specificity-fallback/index.html b/docs/navpatterns/patterns/setup-specificity-fallback/index.html
index e5fd5fd0..fa8ef502 100644
--- a/docs/navpatterns/patterns/setup-specificity-fallback/index.html
+++ b/docs/navpatterns/patterns/setup-specificity-fallback/index.html
@@ -629,6 +629,7 @@ Description The pattern involves a setup table with a compound (i.e. consisting

Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/silent-file-upload-and-download/index.html b/docs/navpatterns/patterns/silent-file-upload-and-download/index.html
index df80a6e9..d7b80e33 100644
--- a/docs/navpatterns/patterns/silent-file-upload-and-download/index.html
+++ b/docs/navpatterns/patterns/silent-file-upload-and-download/index.html
@@ -635,6 +635,7 @@ Description As a terminology clarification [1], note that both “upload&rdq
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/singleton/index.html b/docs/navpatterns/patterns/singleton/index.html
index d01f4913..6ab7b5dc 100644
--- a/docs/navpatterns/patterns/singleton/index.html
+++ b/docs/navpatterns/patterns/singleton/index.html
@@ -594,6 +594,7 @@ Context: The pattern described in this article applies to Dynamics NAV only. For
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/singleton/singleton-codeunit/index.html b/docs/navpatterns/patterns/singleton/singleton-codeunit/index.html
index 9b2d861a..c20eb134 100644
--- a/docs/navpatterns/patterns/singleton/singleton-codeunit/index.html
+++ b/docs/navpatterns/patterns/singleton/singleton-codeunit/index.html
@@ -645,6 +645,7 @@ For example:
Note: while the object-oriented Singleton pattern can restrict the number of instantiations of the singleton to an integer n > 0, in Dynamics NAV the Singleton Codeunit can only have n=1.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/singleton/singleton-table/cue-table/index.html b/docs/navpatterns/patterns/singleton/singleton-table/cue-table/index.html
index 86e488ae..605cacc9 100644
--- a/docs/navpatterns/patterns/singleton/singleton-table/cue-table/index.html
+++ b/docs/navpatterns/patterns/singleton/singleton-table/cue-table/index.html
@@ -697,6 +697,7 @@ The overview information consists of summed-up numbers, calculated from business
Table 1 - Cue tables in Dynamics NAV
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/singleton/singleton-table/index.html b/docs/navpatterns/patterns/singleton/singleton-table/index.html
index 309b556d..969edb81 100644
--- a/docs/navpatterns/patterns/singleton/singleton-table/index.html
+++ b/docs/navpatterns/patterns/singleton/singleton-table/index.html
@@ -637,6 +637,7 @@ Problem: The developer needs to define a single record that can contain a set
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/singleton/singleton-table/setup-table/index.html b/docs/navpatterns/patterns/singleton/singleton-table/setup-table/index.html
index d4fa4f95..40010313 100644
--- a/docs/navpatterns/patterns/singleton/singleton-table/setup-table/index.html
+++ b/docs/navpatterns/patterns/singleton/singleton-table/setup-table/index.html
@@ -622,6 +622,7 @@ Solution: The information is stored in a table with one record only. The user is
Related resources: Considerations on optimizing the Singleton Table, by Søren Klemmensen.
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/standard-journal/index.html b/docs/navpatterns/patterns/standard-journal/index.html
index 844e1cc1..44c10fb2 100644
--- a/docs/navpatterns/patterns/standard-journal/index.html
+++ b/docs/navpatterns/patterns/standard-journal/index.html
@@ -619,6 +619,7 @@ Abstract If the journal data can be reused later, the user has the possibility t
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/temporary-dataset-report/index.html b/docs/navpatterns/patterns/temporary-dataset-report/index.html
index 2e37861b..7690ce73 100644
--- a/docs/navpatterns/patterns/temporary-dataset-report/index.html
+++ b/docs/navpatterns/patterns/temporary-dataset-report/index.html
@@ -710,6 +710,7 @@ The iterator has one shortcoming: It can only run through records written into t
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/totals-and-discounts-on-subpages-sales-and-purchases/index.html b/docs/navpatterns/patterns/totals-and-discounts-on-subpages-sales-and-purchases/index.html
index 3a5e7e74..8528a67d 100644
--- a/docs/navpatterns/patterns/totals-and-discounts-on-subpages-sales-and-purchases/index.html
+++ b/docs/navpatterns/patterns/totals-and-discounts-on-subpages-sales-and-purchases/index.html
@@ -696,6 +696,7 @@ For example, documents should clearly display totals and discounts information t
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/transfer-custom-fields/index.html b/docs/navpatterns/patterns/transfer-custom-fields/index.html
index 6ddbab57..27566c80 100644
--- a/docs/navpatterns/patterns/transfer-custom-fields/index.html
+++ b/docs/navpatterns/patterns/transfer-custom-fields/index.html
@@ -571,6 +571,7 @@
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/patterns/variant-facade/index.html b/docs/navpatterns/patterns/variant-facade/index.html
index 61087595..de94c22a 100644
--- a/docs/navpatterns/patterns/variant-facade/index.html
+++ b/docs/navpatterns/patterns/variant-facade/index.html
@@ -756,6 +756,7 @@ Problem Since NAV is strongly typed, developers often need to duplicate function
Rules Table pattern
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/navpatterns/related-links/index.html b/docs/navpatterns/related-links/index.html
index cb7c683b..eb01752c 100644
--- a/docs/navpatterns/related-links/index.html
+++ b/docs/navpatterns/related-links/index.html
@@ -573,6 +573,7 @@ NAV’s Secret Code: Design Patterns of Today and Tomorrow slides from NAV T
NAV’s Secret Code: Design Patterns of Today and Tomorrow slides from NAV TechDays conference in Antwerp, 2013
Last modified February 24, 2022:
Added tags & categories + cleanup (5ee04366)
+by waldo1001
diff --git a/docs/patterns/event-bridge-pattern/index.html b/docs/patterns/event-bridge-pattern/index.html
index 2445f194..79a254a2 100644
--- a/docs/patterns/event-bridge-pattern/index.html
+++ b/docs/patterns/event-bridge-pattern/index.html
@@ -660,6 +660,7 @@ When a new implementation is created, we need to make sure that these events are
Obviously, the events should be carefully considered: only the events that make sense to “share” over all implementations, need this approach.
diff --git a/docs/patterns/facade-pattern/index.html b/docs/patterns/facade-pattern/index.html
index 6278aacc..82fe08e6 100644
--- a/docs/patterns/facade-pattern/index.html
+++ b/docs/patterns/facade-pattern/index.html
@@ -729,6 +729,7 @@ In Business Central, all modules in the System Application are subsystems. Examp
Module Architecture
diff --git a/docs/patterns/generic-method-pattern/index.html b/docs/patterns/generic-method-pattern/index.html
index d61db30e..289c9cf4 100644
--- a/docs/patterns/generic-method-pattern/index.html
+++ b/docs/patterns/generic-method-pattern/index.html
@@ -865,6 +865,7 @@ And because of that, it so much more maintainable, upgradable, readable, .. . On
diff --git a/docs/patterns/index.html b/docs/patterns/index.html
index 87afab7c..d13831e9 100644
--- a/docs/patterns/index.html
+++ b/docs/patterns/index.html
@@ -574,6 +574,7 @@
Last modified February 23, 2022:
Update _index.md (99c7e5eb)
+by waldo