Enum 426 Payment Tolerance Account Type
- App
- Base Application
- Namespace
- Microsoft.Finance.ReceivablesPayables
- Versions
- 20-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Finance/ReceivablesPayables/PaymentToleranceAccountType.Enum.al36 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.Finance.ReceivablesPayables;
/// <summary>
/// Defines account types for payment tolerance posting in receivables and payables transactions.
/// Used to specify whether tolerance amounts apply to customer or vendor account processing.
/// </summary>
/// <remarks>
/// Determines posting behavior for payment tolerance amounts in customer and vendor ledger operations.
/// Integrates with payment tolerance management for proper G/L account assignment.
/// Supports extensibility for additional account type classifications.
/// </remarks>
enum 426 "Payment Tolerance Account Type"
{
Extensible = true;
AssignmentCompatibility = true;
/// <summary>
/// Customer account type for payment tolerance processing in receivables transactions.
/// </summary>
value(0; "Customer")
{
Caption = 'Customer';
}
/// <summary>
/// Vendor account type for payment tolerance processing in payables transactions.
/// </summary>
value(1; "Vendor")
{
Caption = 'Vendor';
}
}