Table 8902 Email Account in 26

App
System Application
Namespace
System.Email

Fields, 6Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Email/src/Account/EmailAccount.Table.al73 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>
/// A common representation of an email account.
/// </summary>
table 8902 "Email Account"
{
    Extensible = false;
    TableType = Temporary;

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

        field(2; Name; Text[250])
        {
            DataClassification = SystemMetadata; // Field only in Memory
        }

        field(3; "Email Address"; Text[250])
        {
            DataClassification = SystemMetadata; // Field only in Memory
        }

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

        field(5; Logo; Media)
        {
            Access = Internal;
            DataClassification = SystemMetadata;
        }

        field(6; LogoBlob; Blob)
        {
            Access = Internal;
            DataClassification = SystemMetadata;
            Subtype = Bitmap;
        }
    }

    keys
    {
        key(PK; "Account Id", Connector)
        {
            Clustered = true;
        }

        key(Name; Name)
        {
            Description = 'Used for sorting';
        }
    }

    fieldgroups
    {
        fieldgroup(Brick; Logo, Name, "Email Address")
        {

        }
    }

}

Fields, 6

IdNameTypeObsolete
1Account IdGuid-
2NameText[250]-
3Email AddressText[250]-
4ConnectorEnum Email Connector-
5LogoMedia-
6LogoBlobBlob-

Keys, 2

NameFieldsObsolete
PK, clusteredAccount Id, Connector-
NameName-