Page 172 Standard Sales Codes, source in 29
Source29
src/Layers/W1/BaseApp/Sales/Document/StandardSalesCodes.Page.al65 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 standard sales codes for managing recurring sales templates.
/// </summary>
page 172 "Standard Sales Codes"
{
AdditionalSearchTerms = 'recurring sales,reorder,repeat sales';
ApplicationArea = Suite;
Caption = 'Recurring Sales Lines';
CardPageID = "Standard Sales Code Card";
InsertAllowed = false;
ModifyAllowed = false;
PageType = List;
SourceTable = "Standard Sales Code";
UsageCategory = Administration;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = Suite;
}
field(Description; Rec.Description)
{
ApplicationArea = Suite;
}
field("Currency Code"; Rec."Currency Code")
{
ApplicationArea = Suite;
ToolTip = 'Specifies the currency code of the amounts on the standard sales lines.';
Visible = false;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
}
}