Table 8901 Email Error in 27

App
System Application
Namespace
System.Email

Fields, 6Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Email/src/Email/Outbox/EmailError.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.Email;

table 8901 "Email Error"
{
    Extensible = false;
    Access = Internal;
    InherentPermissions = X;
    InherentEntitlements = X;

    fields
    {
        field(1; Id; Integer)
        {
            DataClassification = SystemMetadata;
            AutoIncrement = true;
        }

        field(2; "Outbox Id"; BigInteger)
        {
            DataClassification = SystemMetadata;
            TableRelation = "Email Outbox".Id;
        }

        field(3; "Error Message"; Blob)
        {
            DataClassification = CustomerContent;
        }

        field(4; "Error Callstack"; Blob)
        {
            DataClassification = SystemMetadata;
        }
        field(5; "Error Timestamp"; DateTime)
        {
            DataClassification = SystemMetadata;
        }
        field(6; "Retry No."; Integer)
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; Id)
        {
            Clustered = true;
        }
        key(OutboxId; "Outbox Id")
        {
        }
    }

}

Fields, 6

IdNameTypeObsolete
1IdInteger-
2Outbox IdBigInteger-
3Error MessageBlob-
4Error CallstackBlob-
5Error TimestampDateTime-
6Retry No.Integer-

Keys, 2

NameFieldsObsolete
PK, clusteredId-
OutboxIdOutbox Id-