Page 1280 Bank Clearing Standards

App
Base Application
Namespace
Microsoft.Bank.Setup
Versions
17-28
Source table
1280

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Bank/Setup/BankClearingStandards.Page.al44 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.Setup;

/// <summary>
/// List page for managing bank clearing standard codes and descriptions.
/// Provides lookup interface for bank clearing codes used in electronic payment processing.
/// </summary>
/// <remarks>
/// Source Table: Bank Clearing Standard (1280). Used for defining standard bank routing codes.
/// Supports lookup functionality for bank account setup and payment processing configuration.
/// </remarks>
page 1280 "Bank Clearing Standards"
{
    Caption = 'Bank Clearing Standards';
    PageType = List;
    SourceTable = "Bank Clearing Standard";

    layout
    {
        area(content)
        {
            repeater(Group)
            {
                field("Code"; Rec.Code)
                {
                    ApplicationArea = Basic, Suite;
                }
                field(Description; Rec.Description)
                {
                    ApplicationArea = Basic, Suite;
                }
            }
        }
    }

    actions
    {
    }
}