Table 359 Reservation Worksheet Log
- App
- Base Application
- Namespace
- Microsoft.Inventory.Tracking
- Versions
- 23-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Inventory/Tracking/ReservationWorksheetLog.Table.al56 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.Tracking;
table 359 "Reservation Worksheet Log"
{
Caption = 'Reservation Worksheet Log';
DataClassification = CustomerContent;
fields
{
field(1; "Journal Batch Name"; Code[10])
{
Caption = 'Journal Batch Name';
TableRelation = "Reservation Wksh. Batch";
}
field(2; "Entry No."; Integer)
{
Caption = 'Entry No.';
}
field(17; "Record ID"; RecordId)
{
Caption = 'Record ID';
}
field(20; Quantity; Decimal)
{
AutoFormatType = 0;
Caption = 'Quantity';
ToolTip = 'Specifies how many units were reserved for the demand line.';
DecimalPlaces = 0 : 5;
}
}
keys
{
key(Key1; "Journal Batch Name", "Entry No.")
{
Clustered = true;
}
}
trigger OnInsert()
var
ReservationWorksheetLog: Record "Reservation Worksheet Log";
begin
if "Entry No." = 0 then begin
ReservationWorksheetLog.SetRange("Journal Batch Name", Rec."Journal Batch Name");
if ReservationWorksheetLog.FindLast() then
"Entry No." := ReservationWorksheetLog."Entry No.";
"Entry No." += 1;
end;
end;
}