Table 7703 Miniform Function, source in 29

Source29

src/Layers/W1/BaseApp/Warehouse/ADCS/MiniformFunction.Table.al41 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.Warehouse.ADCS;

table 7703 "Miniform Function"
{
    Caption = 'Miniform Function';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Miniform Code"; Code[20])
        {
            Caption = 'Miniform Code';
            ToolTip = 'Specifies the miniform that has a function assigned to it.';
            TableRelation = "Miniform Header".Code;
        }
        field(2; "Function Code"; Code[20])
        {
            Caption = 'Function Code';
            ToolTip = 'Specifies the code of the function that is assigned to the miniform.';
            TableRelation = "Miniform Function Group".Code;
        }
    }

    keys
    {
        key(Key1; "Miniform Code", "Function Code")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}