Page 1209 Credit Trans Re-export History
- App
- Base Application
- Namespace
- Microsoft.Bank.Payment
- Versions
- 17-28
- Source table
- 1209
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Bank/Payment/CreditTransReexportHistory.Page.al45 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.Payment;
/// <summary>
/// Page 1209 "Credit Trans Re-export History" displays the history of credit transfer re-export operations.
/// This page shows when payment files were re-exported and by which users, providing an audit trail for payment processing.
/// </summary>
/// <remarks>
/// Source table: Credit Trans Re-export History. Used for tracking payment file
/// re-export activities to maintain compliance and audit requirements.
/// </remarks>
page 1209 "Credit Trans Re-export History"
{
Caption = 'Credit Trans Re-export History';
Editable = false;
PageType = List;
SourceTable = "Credit Trans Re-export History";
layout
{
area(content)
{
repeater(Group)
{
field("Re-export Date"; Rec."Re-export Date")
{
ApplicationArea = Basic, Suite;
}
field("Re-exported By"; Rec."Re-exported By")
{
ApplicationArea = Basic, Suite;
}
}
}
}
actions
{
}
}