Table 8910 Email Related Attachment in 25
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 25
src/System Application/App/Email/src/Message/EmailRelatedAttachment.Table.al50 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;
/// <summary>
/// Temporary table that holds information about attachments related to an email.
/// </summary>
table 8910 "Email Related Attachment"
{
Access = Public;
TableType = Temporary;
fields
{
field(1; Id; BigInteger)
{
DataClassification = SystemMetadata;
AutoIncrement = true;
}
field(2; "Attachment Name"; Text[1024])
{
DataClassification = CustomerContent;
}
field(3; "Attachment System ID"; Guid)
{
DataClassification = SystemMetadata;
}
field(4; "Attachment Table ID"; Integer)
{
DataClassification = SystemMetadata;
}
field(5; "Attachment Source"; Text[250])
{
Access = Internal;
DataClassification = SystemMetadata;
}
}
keys
{
key(PK; Id, "Attachment Name", "Attachment System ID")
{
Clustered = true;
}
}
}Fields, 5
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Id | BigInteger | - |
| 2 | Attachment Name | Text[1024] | - |
| 3 | Attachment System ID | Guid | - |
| 4 | Attachment Table ID | Integer | - |
| 5 | Attachment Source | Text[250] | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Id, Attachment Name, Attachment System ID | - |