Table 99000875 Order Promising Setup, source in 29

Source29

src/Layers/W1/BaseApp/Inventory/Availability/OrderPromisingSetup.Table.al62 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.Inventory.Availability;

using Microsoft.Foundation.NoSeries;
using Microsoft.Inventory.Requisition;

table 99000875 "Order Promising Setup"
{
    Caption = 'Order Promising Setup';
    DataClassification = CustomerContent;
    DrillDownPageID = "Order Promising Setup";
    LookupPageID = "Order Promising Setup";

    fields
    {
        field(1; "Primary Key"; Code[10])
        {
            AllowInCustomizations = Never;
            Caption = 'Primary Key';
            Editable = false;
        }
        field(2; "Offset (Time)"; DateFormula)
        {
            Caption = 'Offset (Time)';
        }
        field(8; "Order Promising Nos."; Code[20])
        {
            Caption = 'Order Promising Nos.';
            ToolTip = 'Specifies the code that identifies the number series that you select for order promising.';
            TableRelation = "No. Series";
        }
        field(9; "Order Promising Template"; Code[10])
        {
            Caption = 'Order Promising Template';
            ToolTip = 'Specifies the name of the requisition worksheet template that you select for order promising.';
            TableRelation = "Req. Wksh. Template";
        }
        field(10; "Order Promising Worksheet"; Code[10])
        {
            Caption = 'Order Promising Worksheet';
            ToolTip = 'Specifies the name of the requisition worksheet that you select for order promising.';
            TableRelation = "Requisition Wksh. Name".Name where("Worksheet Template Name" = field("Order Promising Template"));
        }
    }

    keys
    {
        key(Key1; "Primary Key")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}