Table 6712 Tenant Web Service Filter, source in 27

Source242526272829metadata in 27

src/System Application/App/Web Service Management/src/TenantWebServiceFilter.Table.al54 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;

/// <summary>
/// Contains tenant web service filter entities.
/// </summary>
table 6712 "Tenant Web Service Filter"
{
    Caption = 'Tenant Web Service Filter';
    DataPerCompany = false;
    Extensible = false;
    Access = Public;
    ReplicateData = false;

    fields
    {
        field(1; "Entry ID"; Integer)
        {
            DataClassification = SystemMetadata;
            AutoIncrement = true;
            Caption = 'Entry ID';
        }
        field(2; "Filter"; Blob)
        {
            DataClassification = CustomerContent;
            Caption = 'Filter';
        }
        field(3; TenantWebServiceID; RecordId)
        {
            Caption = 'Tenant Web Service ID';
            DataClassification = CustomerContent;
        }
        field(4; "Data Item"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Data Item';
        }
    }

    keys
    {
        key(Key1; "Entry ID")
        {
            Clustered = true;
        }
    }

}