Table 8400 Record Set Definition

App
Base Application
Namespace
System.IO
Versions
17-28

Fields, 4Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/RecordSetDefinition.Table.al50 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.IO;

table 8400 "Record Set Definition"
{
    Caption = 'Record Set Definition';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Table No."; Integer)
        {
            Caption = 'Table No.';
        }
        field(2; "Set ID"; Integer)
        {
            AutoIncrement = true;
            Caption = 'Set ID';
            InitValue = 1;
        }
        field(3; "Node ID"; Integer)
        {
            Caption = 'Node ID';
        }
        field(10; Value; RecordID)
        {
            CalcFormula = lookup ("Record Set Tree".Value where("Table No." = field("Table No."),
                                                                "Node ID" = field("Node ID")));
            Caption = 'Value';
            FieldClass = FlowField;
        }
    }

    keys
    {
        key(Key1; "Table No.", "Set ID", "Node ID")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}