Skip to content
Arthur edited this page Nov 10, 2023 · 2 revisions

Set Access property to Internal for Install/Upgrade codeunits

It is advisable to set Access = Internal for Install and/or Upgrade codeunits. Such codeunits generally do not contain procedures intended for use by other extensions.

Example

codeunit 50100 "MyCodeunit"
{
    SubType = Install;
    Access = Internal;
Clone this wiki locally