Skip to content

Commit

Permalink
Merge pull request #226 from Busschers/SetLoadFIelds
Browse files Browse the repository at this point in the history
SetLoadFields
  • Loading branch information
JeremyVyska authored Sep 28, 2023
2 parents 6659139 + 8befe1b commit 9812ecc
Showing 1 changed file with 69 additions and 0 deletions.
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.FindFirst();
```

## Good code

```AL
Item.SetRange("Third Party Item Exists", false);
Item.SetLoadFields("Item Category Code");
Item.FindFirst();
```

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;
```

0 comments on commit 9812ecc

Please sign in to comment.