Table 9104 SharePoint List Item Atch in 26
- App
- System Application
- Namespace
- System.Integration.Sharepoint
Versions171819202122232425262728latest
Source in 26
src/System Application/App/SharePoint/src/model/listitemattachment/SharePointListItemAtch.Table.al66 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 attachment entity.
/// </summary>
table 9104 "SharePoint List Item Atch"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;
DataClassification = SystemMetadata; // Data classification is SystemMetadata as the table is temporary
Caption = 'SharePoint List Item Attachment';
TableType = Temporary;
fields
{
field(1; OdataId; Text[2048])
{
Caption = 'Odata.Id';
}
field(2; OdataEditLink; Text[2048])
{
Caption = 'Odata.editLink';
}
field(3; "File Name"; Text[2048])
{
Caption = 'File Name';
}
field(4; "Server Relative Url"; Text[2048])
{
Caption = 'Server Relative Url';
}
field(5; "List Id"; Guid)
{
Caption = 'List Id';
}
field(6; "List Item Id"; Integer)
{
Caption = 'List Item Id';
}
field(7; OdataType; Text[2048])
{
Caption = 'Odata.Type';
}
}
keys
{
key(PK; OdataId)
{
Clustered = true;
}
}
}Fields, 7
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | OdataId | Text[2048] | - |
| 2 | OdataEditLink | Text[2048] | - |
| 3 | File Name | Text[2048] | - |
| 4 | Server Relative Url | Text[2048] | - |
| 5 | List Id | Guid | - |
| 6 | List Item Id | Integer | - |
| 7 | OdataType | Text[2048] | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | OdataId | - |