Page 6563 Invt. Receipts, source in 29
Source29
src/Layers/W1/BaseApp/Inventory/Document/InvtReceipts.Page.al103 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.Document;
using Microsoft.Inventory.Comment;
page 6563 "Invt. Receipts"
{
ApplicationArea = Basic, Suite;
Caption = 'Inventory Receipts';
CardPageID = "Invt. Receipt";
DataCaptionFields = "Document Type";
Editable = false;
PageType = List;
SourceTable = "Invt. Document Header";
SourceTableView = where("Document Type" = const(Receipt));
UsageCategory = Lists;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("No."; Rec."No.")
{
ApplicationArea = Basic, Suite;
}
field("Posting Description"; Rec."Posting Description")
{
ApplicationArea = Basic, Suite;
}
field("External Document No."; Rec."External Document No.")
{
ApplicationArea = Basic, Suite;
}
field("Posting Date"; Rec."Posting Date")
{
ApplicationArea = Basic, Suite;
Visible = false;
}
field("Document Date"; Rec."Document Date")
{
ApplicationArea = Basic, Suite;
}
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("Location Code"; Rec."Location Code")
{
ApplicationArea = Location;
}
}
}
area(factboxes)
{
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
}
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
}
}
actions
{
area(navigation)
{
group("Receipt")
{
Caption = 'Receipt';
Image = Receipt;
action("Comments")
{
ApplicationArea = Comments;
Caption = 'Comments';
Image = ViewComments;
ToolTip = 'View or edit comments.';
RunObject = Page "Inventory Comment Sheet";
RunPageLink = "Document Type" = const("Inventory Receipt"),
"No." = field("No.");
}
}
}
}
}