Table 5807 Cost Adjustment Detailed Log

App
Base Application
Namespace
Microsoft.Inventory.Costing
Versions
24-28

Fields, 6Keys, 2

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Inventory/Costing/CostAdjustmentDetailedLog.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.Costing;

using Microsoft.Inventory.Item;

table 5807 "Cost Adjustment Detailed Log"
{
    DataClassification = CustomerContent;
    Caption = 'Cost Adjustment Detailed Log';
    LookupPageId = "Cost Adjustment Detailed Logs";
    InherentPermissions = Rimd;

    fields
    {
        field(1; "Cost Adjustment Run Guid"; Guid)
        {
            Caption = 'Cost Adjustment Run Guid';
            ToolTip = 'Specifies the unique identifier of the cost adjustment run.';
        }
        field(2; "Item No."; Code[20])
        {
            Caption = 'Item No.';
            ToolTip = 'Specifies the item number.';
            TableRelation = Item;
        }
        field(3; "Starting Date-Time"; DateTime)
        {
            Caption = 'Starting Date-Time';
            ToolTip = 'Specifies the starting date and time of the cost adjustment run for the item.';
        }
        field(4; "Ending Date-Time"; DateTime)
        {
            Caption = 'Ending Date-Time';
            ToolTip = 'Specifies the ending date and time of the cost adjustment run for the item.';
        }
        field(5; "Duration"; Duration)
        {
            Caption = 'Duration';
            ToolTip = 'Specifies the duration of the cost adjustment run for the item.';
        }
        field(6; "Interim Date-Time"; DateTime)
        {
            Caption = 'Interim Date-Time';
        }
    }

    keys
    {
        key(PK; "Cost Adjustment Run Guid", "Item No.")
        {
            Clustered = true;
        }
        key(Key2; "Item No.", "Ending Date-Time")
        {

        }
    }
}