Table extension 6455 Serv. Responsibility Center, source in 29
Source29
src/Layers/W1/BaseApp/Service/Inventory/Location/ServResponsibilityCenter.TableExt.al25 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.Inventory.Location;
using Microsoft.Service.Contract;
tableextension 6455 "Serv. Responsibility Center" extends "Responsibility Center"
{
fields
{
field(5901; "Contract Gain/Loss Amount"; Decimal)
{
AutoFormatType = 1;
AutoFormatExpression = '';
CalcFormula = sum("Contract Gain/Loss Entry".Amount where("Responsibility Center" = field(Code),
"Change Date" = field("Date Filter")));
Caption = 'Contract Gain/Loss Amount';
Editable = false;
FieldClass = FlowField;
}
}
}