Page 8364 Dimension Perspectives

App
Base Application
Namespace
Microsoft.Finance.FinancialReports
Versions
28
Source table
8363

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Finance/FinancialReports/DimensionPerspectives.Page.al92 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.Finance.FinancialReports;

page 8364 "Dimension Perspectives"
{
    ApplicationArea = Basic, Suite;
    AnalysisModeEnabled = false;
    DataCaptionFields = Name;
    Caption = 'Financial Report Dimension Perspectives';
    PageType = List;
    SourceTable = "Dimension Perspective Name";
    UsageCategory = Lists;

    layout
    {
        area(content)
        {
            repeater(Group)
            {
                field(Name; Rec.Name) { }
                field(Description; Rec.Description) { }
                field("Analysis View"; Rec."Analysis View Name") { }
                field("Internal Description"; Rec."Internal Description") { }
            }
        }
        area(factboxes)
        {
            systempart(Links; Links)
            {
                ApplicationArea = RecordLinks;
                Visible = false;
            }
            systempart(Notes; Notes)
            {
                ApplicationArea = Notes;
                Visible = false;
            }
        }
    }

    actions
    {
        area(Processing)
        {
            action(EditDefinition)
            {
                Caption = 'Edit Definition';
                Enabled = Rec.Name <> '';
                Image = EditList;
                Scope = Repeater;
                ToolTip = 'View or edit the financial report dimension perspective.';

                trigger OnAction()
                var
                    DimPerspectiveLine: Record "Dimension Perspective Line";
                begin
                    DimPerspectiveLine.SetRange(Name, Rec.Name);
                    Page.Run(0, DimPerspectiveLine);
                end;
            }
            action(WhereUsed)
            {
                ApplicationArea = Basic, Suite;
                Caption = 'Where-Used';
                Enabled = Rec.Name <> '';
                Image = Track;
                Scope = Repeater;
                ToolTip = 'View or edit financial reports in which the dimension perspective is used.';

                trigger OnAction()
                var
                    FinancialReport: Record "Financial Report";
                begin
                    FinancialReport.SetRange(DimPerspective, Rec.Name);
                    Page.Run(0, FinancialReport);
                end;
            }
        }

        area(Promoted)
        {
            group(Category_Process)
            {
                actionref(EditDefinition_Promoted; EditDefinition) { }
                actionref(WhereUsed_Promoted; WhereUsed) { }
            }
        }
    }
}