Page 7394 Posted Invt. Put-away List, source in 29
Source29
src/Layers/W1/BaseApp/Warehouse/InventoryDocument/PostedInvtPutawayList.Page.al120 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.InventoryDocument;
using Microsoft.Warehouse.Comment;
page 7394 "Posted Invt. Put-away List"
{
ApplicationArea = Warehouse;
Caption = 'Posted Inventory Put-aways';
CardPageID = "Posted Invt. Put-away";
Editable = false;
PageType = List;
SourceTable = "Posted Invt. Put-away Header";
SourceTableView = sorting("Posting Date")
order(descending);
UsageCategory = History;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("No."; Rec."No.")
{
ApplicationArea = Warehouse;
}
field("Posting Date"; Rec."Posting Date")
{
ApplicationArea = Warehouse;
}
field("Source No."; Rec."Source No.")
{
ApplicationArea = Warehouse;
}
field("Invt. Put-away No."; Rec."Invt. Put-away No.")
{
ApplicationArea = Warehouse;
}
field("Location Code"; Rec."Location Code")
{
ApplicationArea = Location;
}
field("No. Series"; Rec."No. Series")
{
ApplicationArea = Warehouse;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = true;
}
}
}
actions
{
area(navigation)
{
group("Put-&away")
{
Caption = 'Put-&away';
Image = CreatePutAway;
action("Co&mments")
{
ApplicationArea = Warehouse;
Caption = 'Co&mments';
Image = ViewComments;
RunObject = Page "Warehouse Comment Sheet";
RunPageLink = "Table Name" = const("Posted Invt. Put-Away"),
Type = const(" "),
"No." = field("No.");
ToolTip = 'View or add comments for the record.';
}
}
}
area(processing)
{
action("&Navigate")
{
ApplicationArea = Warehouse;
Caption = 'Find entries...';
Image = Navigate;
ShortCutKey = 'Ctrl+Alt+Q';
ToolTip = 'Find entries and documents that exist for the document number and posting date on the selected document. (Formerly this action was named Navigate.)';
trigger OnAction()
begin
Rec.Navigate();
end;
}
}
area(Promoted)
{
group(Category_Process)
{
Caption = 'Process';
actionref("&Navigate_Promoted"; "&Navigate")
{
}
}
}
}
}