Page extension 6480 Serv. Cash Flow Avail. Lines
- App
- Base Application
- Namespace
- Microsoft.CashFlow.Forecast
- Versions
- 25-28
- Extends
- Cash Flow Availability Lines
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Service/CashFlow/ServCashFlowAvailLines.PageExt.al29 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;
pageextension 6480 "Serv. Cash Flow Avail. Lines" extends "Cash Flow Availability Lines"
{
layout
{
addafter("SalesOrders")
{
field(ServiceOrders; Rec."Service Orders")
{
ApplicationArea = Service;
AutoFormatExpression = FormatStr();
AutoFormatType = 11;
Caption = 'Service Orders';
ToolTip = 'Specifies amounts related to service orders.';
trigger OnDrillDown()
begin
CashFlowForecast.DrillDownSourceTypeEntries(CashFlowForecast."Source Type Filter"::"Service Orders");
end;
}
}
}
}