Enum 439 IC Outb. Purch. Item No. Type
- App
- Base Application
- Namespace
- Microsoft.Intercompany.Outbox
- Versions
- 21-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Finance/Intercompany/Outbox/ICOutbPurchItemNoType.Enum.al37 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.Intercompany.Outbox;
/// <summary>
/// Defines item number types for intercompany outbox purchase line item identification.
/// Controls how item numbers are interpreted and mapped for intercompany purchase transactions.
/// </summary>
/// <remarks>
/// Standard values: Internal No., Common Item No., Cross Reference, Vendor Item No.
/// Extensible via enum extensions for custom item numbering schemes in intercompany purchase scenarios.
/// </remarks>
enum 439 "IC Outb. Purch. Item No. Type"
{
Extensible = true;
AssignmentCompatibility = true;
/// <summary>
/// Internal item number used within the current company for item identification.
/// </summary>
value(0; "Internal No.") { Caption = 'Order'; }
/// <summary>
/// Common item number shared across intercompany partners for standardized item identification.
/// </summary>
value(1; "Common Item No.") { Caption = 'Common Item No.'; }
/// <summary>
/// Cross reference or item reference number for partner-specific item mapping.
/// </summary>
value(2; "Cross Reference") { Caption = 'Item Reference'; }
/// <summary>
/// Vendor-specific item number for purchase transaction processing and partner recognition.
/// </summary>
value(3; "Vendor Item No.") { Caption = 'Vendor Item No.'; }
}