Table extension 6471 Serv. Cash Flow Setup, source in 29
Source29
src/Layers/W1/BaseApp/Service/CashFlow/ServCashFlowSetup.TableExt.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.Service.CashFlow;
using Microsoft.CashFlow.Account;
using Microsoft.CashFlow.Setup;
using Microsoft.Service.Document;
tableextension 6471 "Serv. Cash Flow Setup" extends "Cash Flow Setup"
{
fields
{
field(10; "Service CF Account No."; Code[20])
{
AccessByPermission = TableData "Service Header" = R;
Caption = 'Service CF Account No.';
DataClassification = CustomerContent;
TableRelation = "Cash Flow Account";
trigger OnValidate()
begin
CheckAccountType("Service CF Account No.");
end;
}
}
}