Table 8904 Email Message Attachment in 25
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 25
src/System Application/App/Email/src/Message/EmailMessageAttachment.Table.al79 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></summary>
table 8904 "Email Message Attachment"
{
Access = Internal;
InherentPermissions = X;
InherentEntitlements = X;
fields
{
field(1; Id; BigInteger)
{
DataClassification = SystemMetadata;
AutoIncrement = true;
}
field(2; "Email Message Id"; Guid)
{
DataClassification = SystemMetadata;
TableRelation = "Email Message".Id;
}
field(3; Attachment; Blob)
{
DataClassification = CustomerContent;
ObsoleteState = Removed;
ObsoleteReason = 'Field has been replaced with the media field, Data.';
ObsoleteTag = '18.1';
}
field(4; "Attachment Name"; Text[250])
{
DataClassification = CustomerContent;
}
field(5; "Content Type"; Text[250])
{
DataClassification = SystemMetadata;
}
field(6; InLine; Boolean)
{
DataClassification = SystemMetadata;
}
field(7; "Content Id"; Text[40])
{
DataClassification = SystemMetadata;
}
field(8; Length; Integer)
{
DataClassification = SystemMetadata;
}
field(9; Data; Media)
{
DataClassification = CustomerContent;
}
}
keys
{
key(PK; Id)
{
Clustered = true;
}
key(MessageId; "Email Message Id")
{
}
}
}Fields, 9
| Id | Name | Type | Obsolete | ||||
|---|---|---|---|---|---|---|---|
| 1 | Id | BigInteger | - | ||||
| 2 | Email Message Id | Guid | - | ||||
| 3 | Attachment | Blob | Removed 18.1 | ||||
| Field has been replaced with the media field, Data. | |||||||
| 4 | Attachment Name | Text[250] | - | ||||
| 5 | Content Type | Text[250] | - | ||||
| 6 | InLine | Boolean | - | ||||
| 7 | Content Id | Text[40] | - | ||||
| 8 | Length | Integer | - | ||||
| 9 | Data | Media | - | ||||
Keys, 2
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Id | - |
| MessageId | Email Message Id | - |