Table 9103 SharePoint List Item, source in 24
Source242526272829metadata in 24
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;
}
}
}