Table 8901 Email Error in 24
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 24
src/System Application/App/Email/src/Email/Outbox/EmailError.Table.al51 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;
}
}
keys
{
key(PK; Id)
{
Clustered = true;
}
key(OutboxId; "Outbox Id")
{
}
}
}Fields, 4
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Id | Integer | - |
| 2 | Outbox Id | BigInteger | - |
| 3 | Error Message | Blob | - |
| 4 | Error Callstack | Blob | - |
Keys, 2
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Id | - |
| OutboxId | Outbox Id | - |