Page 603 IC Dimension Value List
- App
- Base Application
- Namespace
- Microsoft.Intercompany.Dimension
- Versions
- 17-28
- Source table
- 412
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Finance/Intercompany/Dimension/ICDimensionValueList.Page.al79 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.Intercompany.Dimension;
/// <summary>
/// Provides a read-only list view of intercompany dimension values with hierarchical indentation.
/// Displays dimension value codes and names with appropriate formatting for Begin-Total and End-Total entries.
/// </summary>
page 603 "IC Dimension Value List"
{
Caption = 'Intercompany Dimension Value List';
Editable = false;
PageType = List;
SourceTable = "IC Dimension Value";
layout
{
area(content)
{
repeater(Control1)
{
IndentationColumn = NameIndent;
IndentationControls = Name;
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = Dimensions;
Style = Strong;
StyleExpr = Emphasize;
ToolTip = 'Specifies the intercompany dimension code.';
}
field(Name; Rec.Name)
{
ApplicationArea = Dimensions;
Style = Strong;
StyleExpr = Emphasize;
ToolTip = 'Specifies the intercompany dimension name.';
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
}
trigger OnAfterGetRecord()
begin
NameIndent := 0;
FormatLine();
end;
var
Emphasize: Boolean;
NameIndent: Integer;
local procedure FormatLine()
begin
Emphasize := Rec."Dimension Value Type" <> Rec."Dimension Value Type"::Standard;
NameIndent := Rec.Indentation;
end;
}