Page 865 Report Selection - Cash Flow

App
Base Application
Namespace
Microsoft.CashFlow.Setup
Versions
17-28
Source table
856

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/CashFlow/Setup/ReportSelectionCashFlow.Page.al59 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.CashFlow.Setup;

using System.Reflection;

page 865 "Report Selection - Cash Flow"
{
    AboutTitle = 'About report selection for cash flow';
    AboutText = 'On this page, you set up the default reports that are used when printing cash flow forecasts. Specify which reports to use in the list below.';
    ApplicationArea = Basic, Suite;
    Caption = 'Report Selection - Cash Flow';
    PageType = Worksheet;
    SaveValues = true;
    SourceTable = "Cash Flow Report Selection";
    UsageCategory = Administration;

    layout
    {
        area(content)
        {
            repeater(Control1002)
            {
                ShowCaption = false;
                field(Sequence; Rec.Sequence)
                {
                    ApplicationArea = Basic, Suite;
                    ToolTip = 'Specifies a number that indicates where this report is in the printing order.';
                }
                field("Report ID"; Rec."Report ID")
                {
                    ApplicationArea = Basic, Suite;
                    LookupPageID = Objects;
                    ToolTip = 'Specifies the object ID of the report.';
                }
                field("Report Caption"; Rec."Report Caption")
                {
                    ApplicationArea = Basic, Suite;
                    DrillDown = false;
                    LookupPageID = Objects;
                    ToolTip = 'Specifies the display name of the report.';
                }
            }
        }
    }

    actions
    {
    }

    trigger OnNewRecord(BelowxRec: Boolean)
    begin
        Rec.NewRecord();
    end;
}