Codeunit 2613 Feature Data Error Handler
- App
- System Application
- Namespace
- System.Environment.Configuration
- Versions
- 17-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Feature Key/src/FeatureDataErrorHandler.Codeunit.al29 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 System.Environment.Configuration;
/// <summary>
/// Error handler codeunit used by the task scheduler during feature data update.
/// </summary>
codeunit 2613 "Feature Data Error Handler"
{
TableNo = "Feature Data Update Status";
InherentEntitlements = X;
InherentPermissions = X;
trigger OnRun()
var
FeatureManagementImpl: Codeunit "Feature Management Impl.";
begin
FeatureManagementImpl.HandleUpdateError(Rec);
OnLogError(Rec);
end;
[IntegrationEvent(false, false)]
local procedure OnLogError(FeatureDataUpdateStatus: Record "Feature Data Update Status")
begin
end;
}