Table 8910 Email Related Attachment in 26

App
System Application
Namespace
System.Email

Fields, 5Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 26

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

IdNameTypeObsolete
1IdBigInteger-
2Attachment NameText[1024]-
3Attachment System IDGuid-
4Attachment Table IDInteger-
5Attachment SourceText[250]-

Keys, 1

NameFieldsObsolete
PK, clusteredId, Attachment Name, Attachment System ID-