Skip to content
Stefan Maroń edited this page Dec 19, 2021 · 1 revision

LC0003 - Do not use an Object ID for properties or variable declarations

when declaring variables or properties it is still possible to use object ids

var 
  Customer: Record 18;

However, this is considered bad practice. Its not readable and can not be renamed.
Use object names instead

var 
  Customer: Record Customer;