Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SetLoadFields #226

Merged
merged 5 commits into from
Sep 28, 2023
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions content/docs/BestPractices/SetLoadFields/Index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
title: "SetLoadFields"
tags: ["AL","Readability"]
categories: ["Best Practice"]
---

See the documentation on learn.microsoft.com for more information about [SetLoadFields](https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/methods-auto/record/record-setloadfields-method).

For the performance of your code it is important that you use SetLoadFields as much as possible.

If you want to retrieve a record from the database to check if the record is available always use SetLoadFields on the primary key fields of the table so only those fields will be retrieved from the database.

## Bad code

```AL
if not Item.Get(ItemNo) then
exit();
```

## Good code

```AL
Item.SetLoadFields("No.");
if not Item.Get(ItemNo) then
exit();
```


Place the SetLoadFields in the code before the line of the Get (or find). (there is no need to record filter fields in the SetLoadFields because these will be retrieved automatically).
## Bad code

```AL
Item.SetLoadFields("Item Category Code");
Item.SetRange("Third Party Item Exists", false);
Item.Get(ItemNo);
Busschers marked this conversation as resolved.
Show resolved Hide resolved
```

## Good code

```AL
Item.SetRange("Third Party Item Exists", false);
Item.SetLoadFields("Item Category Code");
Item.Get(ItemNo);
Busschers marked this conversation as resolved.
Show resolved Hide resolved
```

Place the SetLoadFields in the code before the case statement
## Bad code

```AL
Item.SetLoadFields("Item Category Code");
ItemCategoryCode := FindItemCategoryCode;

case true of
Item.Get(ItemNo):
SetItemCategoryCode(Item, ItemCategoryCode);
end;
```

## Good code

```AL
ItemCategoryCode := FindItemCategoryCode;
Item.SetLoadFields("Item Category Code");

case true of
Item.Get(ItemNo):
SetItemCategoryCode(Item, ItemCategoryCode);
end;
```