Page 1283 Payment Bank Account Card

App
Base Application
Namespace
Microsoft.Bank.BankAccount
Versions
17-28
Source table
270

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Bank/BankAccount/PaymentBankAccountCard.Page.al131 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 card focused on payment processing configuration.
/// Provides interface for setting up bank accounts for electronic payments and fund transfers.
/// </summary>
/// <remarks>
/// Source Table: Bank Account (270). Emphasizes payment export settings and electronic banking configuration.
/// Used in payment processing workflows for account setup and configuration.
/// </remarks>
page 1283 "Payment Bank Account Card"
{
    Caption = 'Payment Bank Account Card';
    SourceTable = "Bank Account";

    layout
    {
        area(content)
        {
            group(General)
            {
                Caption = 'General';
                field("No."; Rec."No.")
                {
                    ApplicationArea = Basic, Suite;
                    NotBlank = true;
                    ShowMandatory = true;
                }
                field(Name; Rec.Name)
                {
                    ApplicationArea = Basic, Suite;
                }
                field("Bank Account No."; Rec."Bank Account No.")
                {
                    ApplicationArea = Basic, Suite;
                }
                field(IBAN; Rec.IBAN)
                {
                    ApplicationArea = Basic, Suite;
                }
                field("Bank Acc. Posting Group"; Rec."Bank Acc. Posting Group")
                {
                    ApplicationArea = Basic, Suite;
                    ShowMandatory = true;
                }
                group("Payment Match Tolerance")
                {
                    Caption = 'Payment Match Tolerance';
                    field("Match Tolerance Type"; Rec."Match Tolerance Type")
                    {
                        ApplicationArea = Basic, Suite;
                    }
                    field("Match Tolerance Value"; Rec."Match Tolerance Value")
                    {
                        ApplicationArea = Basic, Suite;
                        DecimalPlaces = 0 : 2;
                    }
                }
                field("Bank Statement Import Format"; Rec."Bank Statement Import Format")
                {
                    ApplicationArea = Basic, Suite;
                    ShowMandatory = true;
                }
                field("Currency Code"; Rec."Currency Code")
                {
                    ApplicationArea = Suite;
                }
                field("Last Payment Statement No."; Rec."Last Payment Statement No.")
                {
                    ApplicationArea = Basic, Suite;
                    ToolTip = 'Specifies the number of the last bank statement that was imported, either as a feed or a file.';
                }
            }
            group(Address)
            {
                Caption = 'Address';
                field("Phone No."; Rec."Phone No.")
                {
                    ApplicationArea = Basic, Suite;
                }
                field("E-Mail"; Rec."E-Mail")
                {
                    ApplicationArea = Basic, Suite;
                    ExtendedDatatype = EMail;
                }
                field(Contact; Rec.Contact)
                {
                    ApplicationArea = Basic, Suite;
                }
            }
        }
    }

    actions
    {
        area(processing)
        {
            group(Information)
            {
                Caption = 'Information';
                Image = Customer;
                action("Detailed Information")
                {
                    ApplicationArea = Basic, Suite;
                    Caption = 'Detailed Information';
                    Image = ViewDetails;
                    RunObject = Page "Bank Account Card";
                    RunPageLink = "No." = field("No.");
                    ToolTip = 'View or edit additional information about the bank account, such as the account. You can also check the balance on the account.';
                }
            }
        }
        area(Promoted)
        {
            group(Category_Process)
            {
                Caption = 'Process';

                actionref("Detailed Information_Promoted"; "Detailed Information")
                {
                }
            }
        }
    }
}