Table 8901 Email Error, source in 29
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")
{
}
}
}