Page extension 6481 Serv. Cash Flow Forecast Stat.
- App
- Base Application
- Namespace
- Microsoft.CashFlow.Forecast
- Versions
- 25-28
- Extends
- Cash Flow Forecast Statistics
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Service/CashFlow/ServCashFlowForecastStat.PageExt.al31 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.Forecast;
using Microsoft.CashFlow.Setup;
pageextension 6481 "Serv. Cash Flow Forecast Stat." extends "Cash Flow Forecast Statistics"
{
layout
{
addafter(SalesOrders)
{
field(ServiceOrders; Rec.CalcSourceTypeAmount("Cash Flow Source Type"::"Service Orders"))
{
ApplicationArea = Service;
AutoFormatType = 1;
AutoFormatExpression = '';
Caption = 'Service Orders';
ToolTip = 'Specifies amounts related to service orders.';
trigger OnDrillDown()
begin
Rec.DrillDownSourceTypeEntries("Cash Flow Source Type"::"Service Orders");
end;
}
}
}
}