Table 9106 SharePoint Folder in 27
- App
- System Application
- Namespace
- System.Integration.Sharepoint
Versions171819202122232425262728latest
Source in 27
src/System Application/App/SharePoint/src/model/folder/SharePointFolder.Table.al75 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 folder entity.
/// </summary>
table 9106 "SharePoint Folder"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;
DataClassification = SystemMetadata; // Data classification is SystemMetadata as the table is temporary
Caption = 'SharePoint Folder';
TableType = Temporary;
fields
{
field(1; "Unique Id"; Guid)
{
Caption = 'Unique Id';
}
field(2; Name; Text[250])
{
Caption = 'Title';
}
field(3; Created; DateTime)
{
Caption = 'Created';
}
field(4; "Item Count"; Integer)
{
Caption = 'Item Count';
}
field(5; Exists; Boolean)
{
Caption = 'Exists';
}
field(6; "Server Relative Url"; Text[2048])
{
Caption = 'Server Relative Url';
}
field(7; OdataId; Text[2048])
{
Caption = 'Odata.Id';
}
field(8; OdataType; Text[2048])
{
Caption = 'Odata.Type';
}
field(9; OdataEditLink; Text[2048])
{
Caption = 'Odata.EditLink';
}
}
keys
{
key(PK; "Unique Id")
{
Clustered = true;
}
}
}Fields, 9
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Unique Id | Guid | - |
| 2 | Name | Text[250] | - |
| 3 | Created | DateTime | - |
| 4 | Item Count | Integer | - |
| 5 | Exists | Boolean | - |
| 6 | Server Relative Url | Text[2048] | - |
| 7 | OdataId | Text[2048] | - |
| 8 | OdataType | Text[2048] | - |
| 9 | OdataEditLink | Text[2048] | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Unique Id | - |