Page 458 No. Series Relationships, source in 25
Source242526272829metadata in 25
src/Business Foundation/App/NoSeries/src/Setup/NoSeriesRelationships.Page.al64 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.Foundation.NoSeries;
page 458 "No. Series Relationships"
{
ApplicationArea = Basic, Suite;
Caption = 'No. Series Relationships';
DataCaptionFields = "Code";
PageType = List;
SourceTable = "No. Series Relationship";
layout
{
area(Content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
Caption = 'Code';
ToolTip = 'Specifies the number series code that represents the related number series.';
Visible = false;
}
field(Description; Rec.Description)
{
Caption = 'Description';
DrillDown = false;
ToolTip = 'Specifies the description of the number series represented by the code in the Code field.';
Visible = false;
}
field("Series Code"; Rec."Series Code")
{
Caption = 'Series Code';
ToolTip = 'Specifies the code for a number series that you want to include in the group of related number series.';
}
field("Series Description"; Rec."Series Description")
{
Caption = 'Series Description';
DrillDown = false;
ToolTip = 'Specifies the description of the number series represented by the code in the Series Code field.';
}
}
}
area(FactBoxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
}