Table 5327 Coupling Fields Buffer, source in 29

Source29

src/Layers/W1/BaseApp/Integration/Dataverse/CouplingFieldsBuffer.Table.al68 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 Microsoft.Integration.Dataverse;

table 5327 "Coupling Fields Buffer"
{
    Caption = 'Coupling Field Buffer';
    ReplicateData = false;
    TableType = Temporary;
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Field Name"; Text[50])
        {
            Caption = 'Field Name';
            ToolTip = 'Specifies the field''s name in Dynamics 365 Sales.';
            DataClassification = SystemMetadata;
        }
        field(2; "Mapped Field Name"; Text[50])
        {
            Caption = 'Mapped Field Name';
            DataClassification = SystemMetadata;
        }
        field(3; Value; Text[250])
        {
            Caption = 'Value';
            ToolTip = 'Specifies the field''s name in Dynamics 365 Sales.';
            DataClassification = SystemMetadata;
        }
        field(4; "Integration Value"; Text[250])
        {
            Caption = 'Integration Value';
            ToolTip = 'Specifies the field''s value in Dynamics 365 Sales.';
            DataClassification = SystemMetadata;
        }
        field(6; Direction; Option)
        {
            Caption = 'Direction';
            ToolTip = 'Specifies the direction of data integration.';
            DataClassification = SystemMetadata;
            OptionCaption = 'Bidirectional,ToIntegrationTable,FromIntegrationTable';
            OptionMembers = Bidirectional,ToIntegrationTable,FromIntegrationTable;
        }
        field(8; "Validate Field"; Boolean)
        {
            Caption = 'Validate Field';
            ToolTip = 'Specifies whether to validate the field''s value in Business Central.';
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Key1; "Field Name", "Mapped Field Name")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}