Table 9106 SharePoint Folder in 26

App
System Application
Namespace
System.Integration.Sharepoint

Fields, 9Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/SharePoint/src/model/folder/SharePointFolder.Table.al75 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.Integration.Sharepoint;

/// <summary>
/// Holds information about folder entity.
/// </summary>
table 9106 "SharePoint Folder"
{
    Access = Public;
    InherentEntitlements = X;
    InherentPermissions = X;
    DataClassification = SystemMetadata; // Data classification is SystemMetadata as the table is temporary
    Caption = 'SharePoint Folder';
    TableType = Temporary;

    fields
    {
        field(1; "Unique Id"; Guid)
        {
            Caption = 'Unique Id';
        }

        field(2; Name; Text[250])
        {
            Caption = 'Title';
        }

        field(3; Created; DateTime)
        {
            Caption = 'Created';
        }

        field(4; "Item Count"; Integer)
        {
            Caption = 'Item Count';
        }

        field(5; Exists; Boolean)
        {
            Caption = 'Exists';
        }

        field(6; "Server Relative Url"; Text[2048])
        {
            Caption = 'Server Relative Url';
        }

        field(7; OdataId; Text[2048])
        {
            Caption = 'Odata.Id';
        }

        field(8; OdataType; Text[2048])
        {
            Caption = 'Odata.Type';
        }

        field(9; OdataEditLink; Text[2048])
        {
            Caption = 'Odata.EditLink';
        }
    }

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

Fields, 9

IdNameTypeObsolete
1Unique IdGuid-
2NameText[250]-
3CreatedDateTime-
4Item CountInteger-
5ExistsBoolean-
6Server Relative UrlText[2048]-
7OdataIdText[2048]-
8OdataTypeText[2048]-
9OdataEditLinkText[2048]-

Keys, 1

NameFieldsObsolete
PK, clusteredUnique Id-