Table 283 Line Number Buffer

App
Base Application
Namespace
Microsoft.Utilities
Versions
17-28

Fields, 2Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Utilities/LineNumberBuffer.Table.al40 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.Utilities;

table 283 "Line Number Buffer"
{
    Caption = 'Line Number Buffer';
    ReplicateData = false;
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Old Line Number"; Integer)
        {
            Caption = 'Old Line Number';
            DataClassification = SystemMetadata;
        }
        field(2; "New Line Number"; Integer)
        {
            Caption = 'New Line Number';
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Key1; "Old Line Number")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}