Page 1284 Outstanding Bank Transactions
- App
- Base Application
- Namespace
- Microsoft.Bank.Reconciliation
- Versions
- 17-28
- Source table
- 1284
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Bank/Reconciliation/OutstandingBankTransactions.Page.al87 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.Reconciliation;
/// <summary>
/// Displays outstanding bank transactions that require reconciliation.
/// Shows unmatched bank entries and provides interface for manual matching.
/// </summary>
page 1284 "Outstanding Bank Transactions"
{
Caption = 'Outstanding Bank Transactions';
DeleteAllowed = false;
Editable = false;
InsertAllowed = false;
PageType = List;
SourceTable = "Outstanding Bank Transaction";
SourceTableTemporary = true;
layout
{
area(content)
{
repeater(Group)
{
field("Posting Date"; Rec."Posting Date")
{
ApplicationArea = Basic, Suite;
}
field("Document Type"; Rec."Document Type")
{
ApplicationArea = Basic, Suite;
}
field("Document No."; Rec."Document No.")
{
ApplicationArea = Basic, Suite;
}
field(Description; Rec.Description)
{
ApplicationArea = Basic, Suite;
}
field(Amount; Rec.Amount)
{
ApplicationArea = Basic, Suite;
Caption = 'Amount';
}
field(Type; Rec.Type)
{
ApplicationArea = Basic, Suite;
}
field(Applied; Rec.Applied)
{
ApplicationArea = Basic, Suite;
Visible = false;
}
field("Entry No."; Rec."Entry No.")
{
ApplicationArea = Basic, Suite;
}
}
}
}
actions
{
}
var
OutstandingBankTrxTxt: Label 'Outstanding Bank Transactions';
OutstandingPaymentTrxTxt: Label 'Outstanding Payment Transactions';
procedure SetRecords(var TempOutstandingBankTransaction: Record "Outstanding Bank Transaction" temporary)
begin
Rec.Copy(TempOutstandingBankTransaction, true);
end;
procedure SetPageCaption(TransactionType: Option)
begin
if TransactionType = Rec.Type::"Bank Account Ledger Entry" then
CurrPage.Caption(OutstandingBankTrxTxt)
else
CurrPage.Caption(OutstandingPaymentTrxTxt);
end;
}