Page 7400 Internal Movement List
- App
- Base Application
- Namespace
- Microsoft.Warehouse.InternalDocument
- Versions
- 17-28
- Source table
- 7346
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Warehouse/InternalDocument/InternalMovementList.Page.al91 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;
using Microsoft.Warehouse.Comment;
page 7400 "Internal Movement List"
{
ApplicationArea = Warehouse;
Caption = 'Internal Movements';
CardPageID = "Internal Movement";
Editable = false;
PageType = List;
SourceTable = "Internal Movement Header";
UsageCategory = Tasks;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("No."; Rec."No.")
{
ApplicationArea = Warehouse;
}
field("Location Code"; Rec."Location Code")
{
ApplicationArea = Location;
}
field("To Bin Code"; Rec."To Bin Code")
{
ApplicationArea = Warehouse;
}
field("Due Date"; Rec."Due Date")
{
ApplicationArea = Warehouse;
}
field("Assigned User ID"; Rec."Assigned User ID")
{
ApplicationArea = Warehouse;
}
field("Sorting Method"; Rec."Sorting Method")
{
ApplicationArea = Warehouse;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = true;
}
}
}
actions
{
area(navigation)
{
group("&Internal Movement")
{
Caption = '&Internal Movement';
Image = CreateMovement;
action("Co&mments")
{
ApplicationArea = Warehouse;
Caption = 'Co&mments';
Image = ViewComments;
RunObject = Page "Warehouse Comment Sheet";
RunPageLink = "Table Name" = const("Internal Movement"),
Type = const(" "),
"No." = field("No.");
ToolTip = 'View or add comments for the record.';
}
}
}
}
}