Table 9105 SharePoint List, source in 26
Source242526272829metadata 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;
}
}
}