Table 3905 Retention Policy Log Entry in 28

App
System Application
Namespace
System.DataAdministration

Fields, 6Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Retention Policy/src/Retention Policy Log/RetentionPolicyLogEntry.Table.al59 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.DataAdministration;

using System.Security.AccessControl;

table 3905 "Retention Policy Log Entry"
{
    Extensible = false;
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;

    fields
    {
        field(1; "Entry No."; BigInteger)
        {
            DataClassification = SystemMetadata;
            AutoIncrement = true;
        }
        field(3; "Session Id"; Integer)
        {
            DataClassification = SystemMetadata;
        }
        field(4; "User Id"; Code[50])
        {
            FieldClass = FlowField;
            CalcFormula = lookup(User."User Name" where("User Security Id" = field(SystemCreatedBy)));
            Editable = false;
        }
        field(5; Category; Enum "Retention Policy Log Category")
        {
            DataClassification = SystemMetadata;
        }
        field(6; "Message Type"; Enum "Retention Policy Log Message Type")
        {
            DataClassification = SystemMetadata;
        }
        field(7; Message; Text[2048])
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; "Entry No.")
        {
            Clustered = true;
        }
        key(Key2; "Message Type")
        {

        }
    }
}

Fields, 6

IdNameTypeObsolete
1Entry No.BigInteger-
3Session IdInteger-
4User IdCode[50]-
5CategoryEnum Retention Policy Log Category-
6Message TypeEnum Retention Policy Log Message Type-
7MessageText[2048]-

Keys, 2

NameFieldsObsolete
PK, clusteredEntry No.-
Key2Message Type-