Temporary records for GetSelectionFilter

Whenever you need to get a value1|value2|value4..value10|... field filter from a provided record variable, then the GetSelectionFilter method from the SelectionFilterManagement codeunit is your friend. However, using this function has one drawback, as you can read in the Remarks section: Source : The BC Docs Librarian…

The Copy method on temporary records

If you ever needed to copy temporary record variables, you probably already stumbled across ToRecord.Copy(FromRecord, true), with the second parameter true being used. But be careful: it works differently than you might think! Imagine two temporary record variables, both pointing to the same base table: Source…