Enum 1610 PEPPOL Processing Type

App
Base Application
Namespace
Microsoft.Sales.Peppol
Versions
25-28

Values, 2

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Sales/Peppol/PEPPOLProcessingType.Enum.al29 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEAN29
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Sales.Peppol;

/// <summary>
/// Defines the document processing types supported for PEPPOL electronic invoice export.
/// </summary>
enum 1610 "PEPPOL Processing Type"
{
    Extensible = true;
    AssignmentCompatibility = true;
    ObsoleteState = Pending;
    ObsoleteReason = 'Replaced by PEPPOL App';
    ObsoleteTag = '29.0';

    /// <summary>
    /// Specifies that the PEPPOL document is processed as a sales transaction.
    /// </summary>
    value(0; "Sale") { Caption = 'Sale'; }
    /// <summary>
    /// Specifies that the PEPPOL document is processed as a service transaction.
    /// </summary>
    value(1; "Service") { Caption = 'Service'; }
}
#endif