Page 6670 Returns-Related Documents
- App
- Base Application
- Namespace
- Microsoft.Sales.Document
- Versions
- 17-28
- Source table
- 6670
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Sales/Document/ReturnsRelatedDocuments.Page.al75 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.Sales.Document;
/// <summary>
/// Displays a list of documents related to a return order for traceability.
/// </summary>
page 6670 "Returns-Related Documents"
{
Caption = 'Returns-Related Documents';
PageType = List;
SourceTable = "Returns-Related Document";
layout
{
area(content)
{
repeater(Control1)
{
Editable = false;
ShowCaption = false;
field("Document Type"; Rec."Document Type")
{
ApplicationArea = SalesReturnOrder;
}
field("No."; Rec."No.")
{
ApplicationArea = SalesReturnOrder;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
area(navigation)
{
group("&Line")
{
Caption = '&Line';
Image = Line;
action(ShowDocument)
{
ApplicationArea = SalesReturnOrder;
Caption = 'Show Document';
Image = EditLines;
ShortCutKey = 'Return';
ToolTip = 'View or change detailed information about the record on the document or journal line.';
trigger OnAction()
begin
Rec.ShowDocumentCard();
end;
}
}
}
}
}