Enum 3111 Activity Log Type in 28

App
System Application
Namespace
System.Log

Values, 2

Versions171819202122232425262728latest

Source26272829

Source in 28

src/System Application/App/ActivityLog/src/ActivityLogType.Enum.al25 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.Log;

/// <summary>
/// Codeunit to build and log activity entries for a specific table and field.
/// Currently first party applications only to allow for future API changes. 
/// </summary>

enum 3111 "Activity Log Type"
{
    Extensible = false;

    value(0; "AL")
    {
        Caption = 'AL', Locked = true;
    }
    value(1; "AI")
    {
        Caption = 'AI', Locked = true;
    }

}

Values, 2

IdNameObsolete
0AL-
1AI-