From 02860bd53ff0afe625a8f354b469900cb2e0487c Mon Sep 17 00:00:00 2001 From: Stefan Sosic <59221826+StefanSosic@users.noreply.github.com> Date: Wed, 4 Jun 2025 00:03:07 +0200 Subject: [PATCH] Add created and described by --- content/docs/BestPractices/SetAutoCalcFields/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/docs/BestPractices/SetAutoCalcFields/index.md b/content/docs/BestPractices/SetAutoCalcFields/index.md index 80aa56e8..9df9893f 100644 --- a/content/docs/BestPractices/SetAutoCalcFields/index.md +++ b/content/docs/BestPractices/SetAutoCalcFields/index.md @@ -4,6 +4,8 @@ tags: ["AL","Performance"] categories: ["Best Practice"] --- +_Created by SosicStefan, Described by SosicStefan_ + In Business Central, `SetAutoCalcFields` is an essential method for optimizing the retrieval of calculated fields, such as FlowFields. Without `SetAutoCalcFields`, FlowFields require explicit calculation via `CalcFields`, which adds performance overhead. By automatically computing FlowFields upon retrieval, `SetAutoCalcFields` reduces unnecessary calls and improves efficiency when reading FlowFields from multiple records in a loop. See the documentation on learn.microsoft.com for more information about [SetAutoCalcFields](https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/methods-auto/record/record-setautocalcfields-method).