Table 9105 SharePoint List in 26

App
System Application
Namespace
System.Integration.Sharepoint

Fields, 11Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/SharePoint/src/model/list/SharePointList.Table.al86 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 list entity.
/// </summary>
table 9105 "SharePoint List"
{
    Access = Public;
    InherentEntitlements = X;
    InherentPermissions = X;
    DataClassification = SystemMetadata; // Data classification is SystemMetadata as the table is temporary
    Caption = 'SharePoint List';
    TableType = Temporary;

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

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

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

        field(4; Description; Text[250])
        {
            Caption = 'Description';
        }

        field(5; "Base Template"; Text[250])
        {
            Caption = 'Base Template';
        }

        field(6; "Base Type"; Text[250])
        {
            Caption = 'Base Type';
        }

        field(7; "Is Catalog"; Boolean)
        {
            Caption = 'Is Catalog';
        }

        field(8; "List Item Entity Type"; Text[250])
        {
            Caption = 'List Item Entity Type Full Name';
        }

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

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

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

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

}

Fields, 11

IdNameTypeObsolete
1IdGuid-
2TitleText[250]-
3CreatedDateTime-
4DescriptionText[250]-
5Base TemplateText[250]-
6Base TypeText[250]-
7Is CatalogBoolean-
8List Item Entity TypeText[250]-
9OdataIdText[2048]-
10OdataTypeText[2048]-
11OdataEditLinkText[2048]-

Keys, 1

NameFieldsObsolete
PK, clusteredId-