Codeunit 1332 Template Feature Mgt.
- App
- Base Application
- Namespace
- Microsoft.Utilities
- Versions
- 17-28
Procedures, 2Events, 1Obsolete, 1
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Utilities/TemplateFeatureMgt.Codeunit.al24 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Utilities;
codeunit 1332 "Template Feature Mgt."
{
trigger OnRun()
begin
end;
procedure IsEnabled() Result: Boolean
begin
Result := true;
OnAfterIsEnabled(Result);
end;
[IntegrationEvent(false, false)]
local procedure OnAfterIsEnabled(var Result: Boolean)
begin
end;
}