Table 6712 Tenant Web Service Filter in 24

App
System Application
Namespace
System.Integration

Fields, 4Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 24

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

}

Fields, 4

IdNameTypeObsolete
1Entry IDInteger-
2FilterBlob-
3TenantWebServiceIDRecordId-
4Data ItemInteger-

Keys, 1

NameFieldsObsolete
Key1, clusteredEntry ID-