Table 5825 Undo Sales Shpt. Line Params

App
Base Application
Namespace
Microsoft.Sales.History
Versions
25-28

Fields, 2Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Sales/History/UndoSalesShptLineParams.Table.al42 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.Sales.History;

/// <summary>
/// Provides parameter storage for the undo sales shipment line process.
/// </summary>
table 5825 "Undo Sales Shpt. Line Params"
{
    TableType = Temporary;

    fields
    {
        /// <summary>
        /// Specifies the unique identifier for the parameter record.
        /// </summary>
        field(1; "Primary Key"; Code[10])
        {
            Caption = 'Primary Key';
            DataClassification = SystemMetadata;
        }
        /// <summary>
        /// Indicates whether to suppress the confirmation dialog during the undo process.
        /// </summary>
        field(2; "Hide Dialog"; Boolean)
        {
            Caption = 'Hide Dialog';
            DataClassification = SystemMetadata;
        }
    }

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