Table 9104 SharePoint List Item Atch in 26

App
System Application
Namespace
System.Integration.Sharepoint

Fields, 7Keys, 1

Versions171819202122232425262728latest

Source242526272829

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

IdNameTypeObsolete
1OdataIdText[2048]-
2OdataEditLinkText[2048]-
3File NameText[2048]-
4Server Relative UrlText[2048]-
5List IdGuid-
6List Item IdInteger-
7OdataTypeText[2048]-

Keys, 1

NameFieldsObsolete
PK, clusteredOdataId-