Table 1311 Last Used Chart

App
Base Application
Versions
17-28

Fields, 3Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/LastUsedChart.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.
// ------------------------------------------------------------------------------------------------
#pragma warning disable AA0247
table 1311 "Last Used Chart"
{
    Caption = 'Last Used Chart';
    DataClassification = CustomerContent;

    fields
    {
        field(1; UID; Code[50])
        {
            Caption = 'UID';
        }
        field(2; "Code Unit ID"; Integer)
        {
            Caption = 'Code Unit ID';
        }
        field(3; "Chart Name"; Text[60])
        {
            Caption = 'Chart Name';
        }
    }

    keys
    {
        key(Key1; UID)
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}