Table extension 6471 Serv. Cash Flow Setup

App
Base Application
Namespace
Microsoft.Service.CashFlow
Versions
25-28
Extends
Cash Flow Setup

Fields, 1

Versions171819202122232425262728

Source29

Source in 29

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;
        }
    }
}