Table 8904 Email Message Attachment in 26

App
System Application
Namespace
System.Email

Fields, 8Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Email/src/Message/EmailMessageAttachment.Table.al72 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(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, 8

IdNameTypeObsolete
1IdBigInteger-
2Email Message IdGuid-
4Attachment NameText[250]-
5Content TypeText[250]-
6InLineBoolean-
7Content IdText[40]-
8LengthInteger-
9DataMedia-

Keys, 2

NameFieldsObsolete
PK, clusteredId-
MessageIdEmail Message Id-