Table 5358 CDS Failed Option Mapping, source in 29

Source29

src/Layers/W1/BaseApp/Integration/Dataverse/CDSFailedOptionMapping.Table.al45 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEANSCHEMA25 
// ------------------------------------------------------------------------------------------------
// 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 5358 "CDS Failed Option Mapping"
{
    Caption = 'CDS Failed Option Mapping';
    DataClassification = SystemMetadata;
    ObsoleteReason = 'Feature OptionMapping will be enabled by default in version 22.0.';
    ObsoleteState = Removed;
    ObsoleteTag = '25.0';

    fields
    {
        field(1; "CRM Integration Record Id"; Guid)
        {
            Caption = 'CRM Integration Record Id';
            DataClassification = SystemMetadata;
            TableRelation = "CRM Integration Record".SystemId;
        }
        field(2; "Record Id"; Guid)
        {
            Caption = 'Record Id';
            DataClassification = SystemMetadata;
        }
        field(3; "Field No."; Integer)
        {
            Caption = 'Field No.';
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; "CRM Integration Record Id", "Record Id", "Field No.")
        {
            Clustered = true;
        }
    }
} 
#endif