Table 8884 Email Folders in 27

App
System Application
Namespace
System.Email

Fields, 6Keys, 1

Versions171819202122232425262728latest

Source272829

Source in 27

src/System Application/App/Email/src/Email/Inbox/EmailFolders.Table.al58 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 the filters for retrieving emails.</summary>
table 8884 "Email Folders"
{
    Access = Public;
    TableType = Temporary;
    DataClassification = CustomerContent;
    InherentEntitlements = RIMDX;
    InherentPermissions = RIMDX;

    fields
    {
        field(1; Ordering; Integer)
        {
            Caption = 'Ordering';
            DataClassification = SystemMetadata;
        }
        field(2; Id; Text[2048])
        {
            Caption = 'Folder Id';
            DataClassification = CustomerContent;
        }
        field(3; "Folder Name"; Text[2048])
        {
            Caption = 'Folder Name';
            DataClassification = CustomerContent;
        }
        field(4; "Has Children"; Boolean)
        {
            Caption = 'Has Children';
            DataClassification = SystemMetadata;
        }
        field(5; "Parent Folder Id"; Text[2048])
        {
            Caption = 'Parent Folder Id';
            DataClassification = SystemMetadata;
        }
        field(6; Indent; Integer)
        {
            Caption = 'Indent';
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; Ordering)
        {
            Clustered = true;
        }
    }
}

Fields, 6

IdNameTypeObsolete
1OrderingInteger-
2IdText[2048]-
3Folder NameText[2048]-
4Has ChildrenBoolean-
5Parent Folder IdText[2048]-
6IndentInteger-

Keys, 1

NameFieldsObsolete
PK, clusteredOrdering-