Page 1282 Payment Bank Account List, source in 29

Source29

src/Layers/W1/BaseApp/Bank/BankAccount/PaymentBankAccountList.Page.al68 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.Bank.BankAccount;

/// <summary>
/// Specialized bank account list focused on payment processing and electronic banking.
/// Displays bank accounts suitable for payment export and electronic fund transfers.
/// </summary>
/// <remarks>
/// Source Table: Bank Account (270). Used for payment-specific bank account selection.
/// Optimized for payment processing workflows and electronic banking operations.
/// </remarks>
page 1282 "Payment Bank Account List"
{
    Caption = 'Payment Bank Account List';
    CardPageID = "Payment Bank Account Card";
    Editable = false;
    PageType = List;
    SourceTable = "Bank Account";

    layout
    {
        area(content)
        {
            repeater(Group)
            {
                field("No."; Rec."No.")
                {
                    ApplicationArea = Basic, Suite;
                }
                field(Name; Rec.Name)
                {
                    ApplicationArea = Basic, Suite;
                }
                field("Currency Code"; Rec."Currency Code")
                {
                    ApplicationArea = Suite;
                }
                field(Balance; Rec.Balance)
                {
                    ApplicationArea = Basic, Suite;
                }
                field(Linked; Linked)
                {
                    ApplicationArea = Basic, Suite;
                    Caption = 'Linked';
                    ToolTip = 'Specifies that the bank account is linked to its related online bank account.';
                }
            }
        }
    }

    actions
    {
    }

    trigger OnAfterGetRecord()
    begin
        Linked := Rec.IsLinkedToBankStatementServiceProvider();
    end;

    var
        Linked: Boolean;
}