Page 6502 Item Tracking Codes, source in 29
Source29
src/Layers/W1/BaseApp/Inventory/Tracking/ItemTrackingCodes.Page.al71 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;
page 6502 "Item Tracking Codes"
{
AdditionalSearchTerms = 'serial number codes,lot number codes,defect codes';
ApplicationArea = ItemTracking;
Caption = 'Item Tracking Codes';
CardPageID = "Item Tracking Code Card";
Editable = false;
PageType = List;
SourceTable = "Item Tracking Code";
UsageCategory = Administration;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = ItemTracking;
}
field(Description; Rec.Description)
{
ApplicationArea = ItemTracking;
}
field("SN Specific Tracking"; Rec."SN Specific Tracking")
{
ApplicationArea = ItemTracking;
}
field("Lot Specific Tracking"; Rec."Lot Specific Tracking")
{
ApplicationArea = ItemTracking;
}
field("Package Specific Tracking"; Rec."Package Specific Tracking")
{
ApplicationArea = ItemTracking;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
}
trigger OnOpenPage()
begin
end;
}