Table 8886 Email Inbox in 27

App
System Application
Namespace
System.Email

Fields, 14Keys, 2

Versions171819202122232425262728latest

Source2526272829

Source in 27

src/System Application/App/Email/src/Email/Inbox/EmailInbox.Table.al101 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>Holds information about emails retrieved from an inbox.</summary>
table 8886 "Email Inbox"
{
    Access = Public;

    fields
    {
        field(1; Id; BigInteger)
        {
            DataClassification = SystemMetadata;
            AutoIncrement = true;
        }

        field(2; "Message Id"; Guid)
        {
            DataClassification = SystemMetadata;
            TableRelation = "Email Message".Id;
        }

        field(3; "Account Id"; Guid)
        {
            DataClassification = SystemMetadata;
        }

        field(4; Connector; Enum "Email Connector")
        {
            DataClassification = SystemMetadata;
        }

        field(5; "User Security Id"; Guid)
        {
            DataClassification = EndUserPseudonymousIdentifiers;
        }

        field(6; Description; Text[2048])
        {
            DataClassification = CustomerContent;
            Editable = false;
        }

        field(7; "Conversation Id"; Text[2048])
        {
            DataClassification = CustomerContent;
            Editable = false;
        }

        field(8; "External Message Id"; Text[2048])
        {
            DataClassification = CustomerContent;
            Editable = false;
        }

        field(9; "Sender Name"; Text[250])
        {
            DataClassification = EndUserIdentifiableInformation;
        }

        field(10; "Sender Address"; Text[250])
        {
            DataClassification = EndUserIdentifiableInformation;
        }

        field(11; "Received DateTime"; DateTime)
        {
            DataClassification = CustomerContent;
        }

        field(12; "Sent DateTime"; DateTime)
        {
            DataClassification = CustomerContent;
        }

        field(13; "Is Read"; Boolean)
        {
            DataClassification = CustomerContent;
        }

        field(14; "Is Draft"; Boolean)
        {
            DataClassification = CustomerContent;
        }
    }

    keys
    {
        key(PK; Id)
        {
            Clustered = true;
        }
        key(MessageId; "Message Id")
        {
        }
    }
}

Fields, 14

IdNameTypeObsolete
1IdBigInteger-
2Message IdGuid-
3Account IdGuid-
4ConnectorEnum Email Connector-
5User Security IdGuid-
6DescriptionText[2048]-
7Conversation IdText[2048]-
8External Message IdText[2048]-
9Sender NameText[250]-
10Sender AddressText[250]-
11Received DateTimeDateTime-
12Sent DateTimeDateTime-
13Is ReadBoolean-
14Is DraftBoolean-

Keys, 2

NameFieldsObsolete
PK, clusteredId-
MessageIdMessage Id-