Page 7361 Whse. Internal Put-away Lines, source in 29
Source29
src/Layers/W1/BaseApp/Warehouse/InternalDocument/WhseInternalPutawayLines.Page.al144 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.Warehouse.InternalDocument;
page 7361 "Whse. Internal Put-away Lines"
{
Caption = 'Whse. Internal Put-away Lines';
Editable = false;
PageType = List;
SourceTable = "Whse. Internal Put-away Line";
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Location Code"; Rec."Location Code")
{
ApplicationArea = Location;
Visible = false;
}
field("From Zone Code"; Rec."From Zone Code")
{
ApplicationArea = Warehouse;
Visible = false;
}
field("From Bin Code"; Rec."From Bin Code")
{
ApplicationArea = Warehouse;
Visible = false;
}
field("Shelf No."; Rec."Shelf No.")
{
ApplicationArea = Warehouse;
Visible = false;
}
field("Item No."; Rec."Item No.")
{
ApplicationArea = Warehouse;
}
field("Variant Code"; Rec."Variant Code")
{
ApplicationArea = Planning;
}
field(Description; Rec.Description)
{
ApplicationArea = Warehouse;
}
field("Description 2"; Rec."Description 2")
{
ApplicationArea = Warehouse;
ToolTip = 'Specifies a second description of the item on the line, if any.';
Visible = false;
}
field(Quantity; Rec.Quantity)
{
ApplicationArea = Warehouse;
}
field("Qty. (Base)"; Rec."Qty. (Base)")
{
ApplicationArea = Warehouse;
ToolTip = 'Specifies the quantity that should be put away, in the base unit of measure.';
}
field("Qty. Outstanding"; Rec."Qty. Outstanding")
{
ApplicationArea = Warehouse;
}
field("Qty. Outstanding (Base)"; Rec."Qty. Outstanding (Base)")
{
ApplicationArea = Warehouse;
ToolTip = 'Specifies the quantity that still needs to be handled, expressed in the base unit of measure.';
Visible = false;
}
field("Unit of Measure Code"; Rec."Unit of Measure Code")
{
ApplicationArea = Warehouse;
}
field("Qty. per Unit of Measure"; Rec."Qty. per Unit of Measure")
{
ApplicationArea = Warehouse;
}
field("Due Date"; Rec."Due Date")
{
ApplicationArea = Warehouse;
}
field("No."; Rec."No.")
{
ApplicationArea = Warehouse;
}
field("Line No."; Rec."Line No.")
{
ApplicationArea = Warehouse;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
area(navigation)
{
group("&Line")
{
Caption = '&Line';
Image = Line;
action("Show Whse. Document")
{
ApplicationArea = Warehouse;
Caption = 'Show Whse. Document';
Image = ViewOrder;
ShortCutKey = 'Shift+F7';
ToolTip = 'View the related ongoing warehouse document.';
trigger OnAction()
var
WhseInternalPutawayHeader: Record "Whse. Internal Put-away Header";
begin
WhseInternalPutawayHeader.Get(Rec."No.");
PAGE.Run(PAGE::"Whse. Internal Put-away", WhseInternalPutawayHeader);
end;
}
}
}
}
}