Page 7386 Registered Invt. Movement List
- App
- Base Application
- Namespace
- Microsoft.Warehouse.InventoryDocument
- Versions
- 17-28
- Source table
- 7344
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Warehouse/InventoryDocument/RegisteredInvtMovementList.Page.al105 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 7386 "Registered Invt. Movement List"
{
ApplicationArea = Warehouse;
Caption = 'Registered Inventory Movements';
CardPageID = "Registered Invt. Movement";
Editable = false;
PageType = List;
SourceTable = "Registered Invt. Movement Hdr.";
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 Document"; Rec."Source Document")
{
ApplicationArea = Warehouse;
}
field("Source No."; Rec."Source No.")
{
ApplicationArea = Warehouse;
}
field("Invt. Movement No."; Rec."Invt. Movement No.")
{
ApplicationArea = Warehouse;
}
field("Location Code"; Rec."Location Code")
{
ApplicationArea = Location;
}
}
}
area(factboxes)
{
systempart(Control5; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control3; Notes)
{
ApplicationArea = Notes;
}
}
}
actions
{
area(navigation)
{
group("&Movement")
{
Caption = '&Movement';
Image = CreateMovement;
action("Co&mments")
{
ApplicationArea = Warehouse;
Caption = 'Co&mments';
Image = ViewComments;
RunObject = Page "Warehouse Comment Sheet";
RunPageLink = "Table Name" = const("Registered Invt. Movement"),
Type = const(" "),
"No." = field("No.");
ToolTip = 'View or add comments for the record.';
}
}
group("&Line")
{
Caption = '&Line';
Image = Line;
action(Card)
{
ApplicationArea = Warehouse;
Caption = 'Card';
Image = EditLines;
RunObject = Page "Registered Invt. Movement";
RunPageOnRec = true;
ShortCutKey = 'Shift+F7';
ToolTip = 'View or change detailed information about the record on the document or journal line.';
}
}
}
}
}