Page 5752 Posted Transfer Shipments
- App
- Base Application
- Namespace
- Microsoft.Inventory.Transfer
- Versions
- 17-28
- Source table
- 5744
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Inventory/Transfer/PostedTransferShipments.Page.al207 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.Transfer;
using Microsoft.Finance.Dimension;
using Microsoft.Inventory.Comment;
page 5752 "Posted Transfer Shipments"
{
ApplicationArea = Location;
Caption = 'Posted Transfer Shipments';
CardPageID = "Posted Transfer Shipment";
Editable = false;
PageType = List;
AboutTitle = 'About Posted Transfer Shipments';
AboutText = 'Review posted transfer shipments to track and manage item movements between locations, access shipment details, and analyze related transactions for completed transfer orders.';
SourceTable = "Transfer Shipment Header";
SourceTableView = sorting("Posting Date")
order(descending);
UsageCategory = History;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("No."; Rec."No.")
{
ApplicationArea = Location;
}
field("Transfer-from Code"; Rec."Transfer-from Code")
{
ApplicationArea = Location;
}
field("Transfer-to Code"; Rec."Transfer-to Code")
{
ApplicationArea = Location;
}
field("Posting Date"; Rec."Posting Date")
{
ApplicationArea = Location;
ToolTip = 'Specifies the posting date of this document.';
}
field("Shortcut Dimension 1 Code"; Rec."Shortcut Dimension 1 Code")
{
ApplicationArea = Dimensions;
Visible = false;
}
field("Shortcut Dimension 2 Code"; Rec."Shortcut Dimension 2 Code")
{
ApplicationArea = Dimensions;
Visible = false;
}
field("Shipment Date"; Rec."Shipment Date")
{
ApplicationArea = Location;
Visible = false;
}
field("Shipment Method Code"; Rec."Shipment Method Code")
{
ApplicationArea = Location;
Visible = false;
}
field("Shipping Agent Code"; Rec."Shipping Agent Code")
{
ApplicationArea = Location;
Visible = false;
}
field("Receipt Date"; Rec."Receipt Date")
{
ApplicationArea = Location;
Visible = false;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = true;
}
}
}
actions
{
area(navigation)
{
group("&Shipment")
{
Caption = '&Shipment';
Image = Shipment;
action(Statistics)
{
ApplicationArea = Location;
Caption = 'Statistics';
Image = Statistics;
RunObject = Page "Transfer Shipment Statistics";
RunPageLink = "No." = field("No.");
ShortCutKey = 'F7';
ToolTip = 'View statistical information about the transfer order, such as the quantity and total weight transferred.';
}
action("Co&mments")
{
ApplicationArea = Comments;
Caption = 'Co&mments';
Image = ViewComments;
RunObject = Page "Inventory Comment Sheet";
RunPageLink = "Document Type" = const("Posted Transfer Shipment"),
"No." = field("No.");
ToolTip = 'View or add comments for the record.';
}
action(Dimensions)
{
AccessByPermission = TableData Dimension = R;
ApplicationArea = Dimensions;
Caption = 'Dimensions';
Image = Dimensions;
ShortCutKey = 'Alt+D';
ToolTip = 'View or edit dimensions, such as area, project, or department, that you can assign to sales and purchase documents to distribute costs and analyze transaction history.';
trigger OnAction()
begin
Rec.ShowDimensions();
end;
}
}
}
area(processing)
{
action("&Print")
{
ApplicationArea = Location;
Caption = '&Print';
Ellipsis = true;
Image = Print;
ToolTip = 'Prepare to print the document. A report request window for the document opens where you can specify what to include on the print-out.';
trigger OnAction()
begin
CurrPage.SetSelectionFilter(TransShptHeader);
TransShptHeader.PrintRecords(true);
end;
}
action("&Navigate")
{
ApplicationArea = Location;
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', Comment = 'Generated from the PromotedActionCategories property index 1.';
actionref("&Print_Promoted"; "&Print")
{
}
actionref("&Navigate_Promoted"; "&Navigate")
{
}
group(Category_Category4)
{
Caption = 'Shipment', Comment = 'Generated from the PromotedActionCategories property index 3.';
actionref(Dimensions_Promoted; Dimensions)
{
}
actionref(Statistics_Promoted; Statistics)
{
}
actionref("Co&mments_Promoted"; "Co&mments")
{
}
}
}
group(Category_Report)
{
Caption = 'Report', Comment = 'Generated from the PromotedActionCategories property index 2.';
}
}
}
var
TransShptHeader: Record "Transfer Shipment Header";
}