Table 9103 SharePoint List Item in 26

App
System Application
Namespace
System.Integration.Sharepoint

Fields, 9Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 26

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

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

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

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

        field(4; Attachments; Boolean)
        {
            Caption = 'Attachments';
        }

        field(5; "File System Object Type"; Integer)
        {
            //Enum with negative values
            // Invalid -	Enumeration whose values specify whether the object is invalid. The value = -1.
            // File	- Enumeration whose values specify whether the object is a file. The value = 0.
            // Folder	- Enumeration whose values specify whether the object is a folder. The value = 1.
            // Web - Enumeration whose values specify whether the object is a site. The values = 2.
            Caption = 'File System Object Type';
        }

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

        field(7; Id; Integer)
        {
            Caption = 'Id';
        }

        field(8; "List Id"; Guid)
        {
            Caption = 'List Id';
        }

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

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

}

Fields, 9

IdNameTypeObsolete
1GuidGuid-
2TitleText[250]-
3CreatedDateTime-
4AttachmentsBoolean-
5File System Object TypeInteger-
6Content Type IdText[250]-
7IdInteger-
8List IdGuid-
9OdataEditLinkText[2048]-

Keys, 1

NameFieldsObsolete
PK, clusteredGuid-