Table 9105 SharePoint List in 28
- App
- System Application
- Namespace
- System.Integration.Sharepoint
Versions171819202122232425262728latest
Source in 28
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
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Id | Guid | - |
| 2 | Title | Text[250] | - |
| 3 | Created | DateTime | - |
| 4 | Description | Text[250] | - |
| 5 | Base Template | Text[250] | - |
| 6 | Base Type | Text[250] | - |
| 7 | Is Catalog | Boolean | - |
| 8 | List Item Entity Type | Text[250] | - |
| 9 | OdataId | Text[2048] | - |
| 10 | OdataType | Text[2048] | - |
| 11 | OdataEditLink | Text[2048] | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Id | - |