Table 9104 SharePoint List Item Atch, source in 29

Source242526272829

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;
        }
    }
}